如何在 C/C 运行时确定方法参数类型++在.NET下?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的,因为程序集中的元数据由编译器放置在那里。以及允许读取该数据的广泛 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.