//Read the dll.
Assembly assembly = Assembly.LoadFrom(@"E:\test.dll");
//Get the list of class name .
Type[] types = assembly.GetTypes();
List<string> classname = new List<string>();
foreach (Type t in types)
{
classname.Add(t.Name);
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter