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");
}
}
Related examples in the same category