从 C# 检索程序集的 MVID?

发布于 2024-10-20 10:15:44 字数 46 浏览 3 评论 0原文

如何在 C# 中使用反射检索 .NET 程序集的模块版本标识符 (MVID)?

How to retrieve the module version identifier (MVID) of a .NET assembly using reflection in c#?

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

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

发布评论

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

评论(2

花心好男孩 2024-10-27 10:15:45

下面的示例不使用反射来加载程序集,而是使用 System.Reflection。元数据

using (var stream = File.OpenRead(filePath))
{
    PEReader reader = new PEReader(stream);
    var metadataReader = reader.GetMetadataReader();
    var mvidHandle = metadataReader.GetModuleDefinition().Mvid;
    var mvid = metadataReader.GetGuid(mvidHandle);
}

这是使用 Mono.Cecil 的示例:

var module = Mono.Cecil.ModuleDefinition.ReadModule(filePath);
var mvid = module.Mvid;

这是用于读取 MVID 且没有任何依赖项的独立代码示例。它是单个文件中 Mono.Cecil 的精简版本:
https://github.com/KirillOsenkov/MetadataTools/blob/ master/src/PEFile/ImageReader.cs

Here's a sample that doesn't use Reflection to load the assembly but instead uses System.Reflection.Metadata:

using (var stream = File.OpenRead(filePath))
{
    PEReader reader = new PEReader(stream);
    var metadataReader = reader.GetMetadataReader();
    var mvidHandle = metadataReader.GetModuleDefinition().Mvid;
    var mvid = metadataReader.GetGuid(mvidHandle);
}

And here's a sample of using Mono.Cecil:

var module = Mono.Cecil.ModuleDefinition.ReadModule(filePath);
var mvid = module.Mvid;

And here's an example of a standalone code to read the MVID without any dependencies. It is a stripped-down version of Mono.Cecil in a single file:
https://github.com/KirillOsenkov/MetadataTools/blob/master/src/PEFile/ImageReader.cs

圈圈圆圆圈圈 2024-10-27 10:15:44

应该是:

var myAssembly = Assembly.GetExecutingAssembly(); //or whatever
var mvid = myAssembly.ManifestModule.ModuleVersionID;

程序集中可以有其他模块,但 ManifestModule 将是“标识”程序集本身的模块。

Should be:

var myAssembly = Assembly.GetExecutingAssembly(); //or whatever
var mvid = myAssembly.ManifestModule.ModuleVersionID;

There can be other modules in an assembly, but the ManifestModule would be the one that "identifies" the assembly itself.

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