如何从 .NET 程序集中提取/生成元数据,就像 VS“转到定义”一样 做

发布于 2024-07-26 22:29:32 字数 231 浏览 6 评论 0原文

有谁知道如何从 .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 技术交流群。

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

发布评论

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

评论(2

孤独患者 2024-08-02 22:29:32

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.

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