如何使用.NET反射来确定方法返回类型(包括void)和参数?

发布于 2024-09-13 19:54:55 字数 63 浏览 8 评论 0原文

如何知道参数的个数和类型?

如何知道返回类型?

如何检查返回类型是否为void?

how to know the number and type of parameters?

how to know the return type?

how to check whether the return type is void?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2024-09-20 19:54:56

使用 MethodInfo.ReturnType 确定返回类型,并 MethodBase .GetParameters() 来了解参数。 (MethodInfo 派生自 MethodBase,因此一旦您通过 Type.GetMethod 等获得了 MethodInfo,您就可以同时使用 ReturnTypeGetParameters()。)

如果方法是 void,则返回类型将为 typeof(void)代码>:

if (method.ReturnType == typeof(void))

Use MethodInfo.ReturnType to determine the return type, and MethodBase.GetParameters() to find out about the parameters. (MethodInfo derives from MethodBase, so once you've got the MethodInfo via Type.GetMethod etc, you can use both ReturnType and GetParameters().)

If the method is void, the return type will be typeof(void):

if (method.ReturnType == typeof(void))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文