简体   繁体   中英

C# how to get dll assembly information?

If we want to get the version number of a dll we could use,

Assembly assembly = Assembly.LoadFrom("System.Xml");
Version ver = assembly.GetName().Version;

How to get the other information (like AssemblyTitle, AssemblyProduct, etc..) ?

使用Reflecter.exe

You can use

var attribute = assembly.GetCustomAttribute<AssemblyTitleAttribute>();
var title = attribute.Title;

to get the attribute. And same solution for AssemblyProductAttribute .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM