What is the simplest way to find the Public-Key-Token of an assembly?
The simplest way I can think of would be a simple right-click, get public key, but this functio
If you have included the assembly in your project, you can do :
var assemblies = AppDomain.CurrentDomain.GetAssemblies(); foreach (var assem in assemblies) { Console.WriteLine(assem.FullName); }