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
As an alternative, you can also use linq like this -
linq
string key = string.Join ("",assembly .GetName() .GetPublicKeyToken() .Select (b => b.ToString ("x2")));