Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发使签名测试变得容易的工具,我已经成功地使用 .net C# 反射从 dll 文件中提取签名。我想知道 C# 中的反射是否会帮助我从以下列表中获取签名,文件类型:(*.exe、*.js、*.msi、*.ocx、*.sys、*.vbs)。
如果没有,那么我怎样才能获得签名(来自上面的列表)?
反射只能用于反射 .NET 程序集(作为 .NET 程序集的 dll 和 exe )。
你不能反思其他类型。
signature从文件中获取是什么意思?
signature
使用以下:
string copyright = FileVersionInfo.GetVersionInfo(path).LegalCopyright;
将从所有想要的文件中获得版权。