Mega Code Archive

 
Categories / C# by API / System Reflection
 

New AssemblyName()

using System; using System.Reflection; class MainClass {     public static void Main(string[] args)     {         AssemblyName assembly1 = new AssemblyName("com.microsoft.crypto, " +             "Culture=en, PublicKeyToken=a5d015c7d5a0b012, Version=1.0.0.0");          } }