3

我创建了一个 MethodInfo 实例:

MethodInfo theMethod = typeof(Reciever).GetMethod("methodName", parameterTypes);

现在我想知道 theMethod 的返回类型是否为 void。如何?

4

1 回答 1

11

简单的:

theMethod.ReturnType == typeof(void)
于 2009-06-18T15:41:32.640 回答