我创建了一个 MethodInfo 实例:
MethodInfo theMethod = typeof(Reciever).GetMethod("methodName", parameterTypes);
现在我想知道 theMethod 的返回类型是否为 void。如何?
我创建了一个 MethodInfo 实例:
MethodInfo theMethod = typeof(Reciever).GetMethod("methodName", parameterTypes);
现在我想知道 theMethod 的返回类型是否为 void。如何?