如何在 C/C 运行时确定方法参数类型++在.NET下?

发布于 2024-09-10 00:22:01 字数 167 浏览 3 评论 0原文

在 C# 中,可以通过使用反射来确定某些方法以及类成员(方法、属性......)的参数类型。 我想这是可能的,因为 IL 和 .NET 技术,对吧?如果是这样,是否可以对在 Visual studio 2005/2008/2010 .NET 下编写的 C/C++ 使用反射或类似技术?

br, 米兰。

in C# it is possible by using reflection to determine parameter types of some method as well as class members (method, properies..).
I suppose that this is possible because of IL and .NET technology, right ? If so is it possible to use reflection or some similar technique for C/C++ writen under Visual studio 2005/2008/2010 .NET ?

br,
Milan.

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

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

发布评论

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

评论(1

你怎么敢 2024-09-17 00:22:01

这是可能的,因为程序集中的元数据由编译器放置在那里。以及允许读取该数据的广泛 API。以及必不可少的 Object.GetType() 方法和 typeof 关键字。

这些在 C 或 C++ 编译器中都不可用。您可以使用 RTTI 并读取调试符号文件来解决这个问题。我怀疑这是否值得付出努力。

It is possible because of metadata in an assembly, put there by the compiler. And an extensive API that allows reading that data. And the essential Object.GetType() method and typeof keyword.

None of which is available in a C or C++ compiler. You could hack around this a bit with RTTI and reading the debug symbol file. I doubt it's worth the effort.

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