如何从 .NET 程序集中提取/生成元数据,就像 VS“转到定义”一样 做
有谁知道如何从 .NET 程序集中提取/生成元数据,就像 VS“转到定义”那样。 当您在 Visual Studio 中执行此操作时,您将在临时目录中获得生成的带有元数据类的 CS 类文件。
我正在寻找一种从整个程序集中自动提取/生成 CS 类的方法。
有什么工具可以做到这一点吗? 我研究过 ILDASM、BINDUMP、SVCUTIL 等以及一堆反编译器。 但我找不到一个工具来做我想做的事。
Does anyone know how to extract/generate Meta data from an .NET assembly just like VS "Go to definition" do. When you do this within Visual Studio you get generated CS class files in the temp directory with Meta data classes.
I´m looking for an automatically way to extract/generate CS classes from an entier Assembly.
Is there any tool for this? I have looked at ILDASM, BINDUMP, SVCUTIL etc and a bunch of decompilers. But i cannot find a tool to do what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 .NET Reflector:http://www.red-gate.com/products/反射器/
Check out the .NET Reflector: http://www.red-gate.com/products/reflector/
VS 的 Go to 定义基本上只是使用标准的 .NET 反射 API 来提取该类的公共 API 并将其呈现给您。
无需反编译即可复制此内容,因为未提供实现,仅提供公共 API。
VS's Go to definition basically just uses the standard .NET reflection API to extract the public API of the class and present it to you.
There is no decompilation necessary to duplicate this, since the implementation is not provided, just the public API.