如何反映没有参数的方法?

发布于 2024-08-15 15:15:55 字数 561 浏览 7 评论 0原文

我正在尝试获取签名中带有 out 参数的类型的方法的 MethodInfo 对象。其效果如下:

MethodInfo tryParse = typeof(T).GetMethod(
    "TryParse",
    BindingFlags.Public|BindingFlags.Static,
    null,
    new Type[] { typeof(string), typeof(T) },
    null);

但问题是,它找不到它,因为第二个参数的类型不仅仅是 T 而是 out T。当我调试并使用 typeof(T).GetMethods() 时,我可以看到我想要的实际 MethodInfo ,并且 ParameterInfo 对象是类型为 T&T ByRef,但我看不到如何从 typeof(T )

有什么想法吗?

I am trying to get a MethodInfo object for a method on a type with an out param in its signature. Something to the effect of this:

MethodInfo tryParse = typeof(T).GetMethod(
    "TryParse",
    BindingFlags.Public|BindingFlags.Static,
    null,
    new Type[] { typeof(string), typeof(T) },
    null);

But the problem is, it doesn't find it because the type of the second parameter is not simply T but out T. When I debug through and use typeof(T).GetMethods() I can see the actual MethodInfo that I want and the ParameterInfo object is either of type T& or T ByRef, but I can't see how to create the Type that represents this from typeof(T).

Any ideas?

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

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

发布评论

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

评论(1

晨与橙与城 2024-08-22 15:15:56

任何有这个问题的人接下来会遇到的是“好吧,但是我如何调用它!?!” 这篇文章为我澄清了这一点。简短回答:参数数组包含输出参数,而不是用于填充参数数组的变量。

And the very next thing anyone with this question is going to run into is "Okay but how to I invoke it!?!" This article cleared that up for me. Short answer: the arguments array contains the out param, not the variable you used to populate the arguments array.

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