Extract the class file and its properties from DLL file using C#

PHOTO EMBED

Tue Jan 24 2023 20:10:40 GMT+0000 (Coordinated Universal Time)

Saved by @javicinhio

 //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);
            }
content_copyCOPY

https://www.aspsnippets.com/questions/831796/Extract-the-class-file-and-its-properties-from-DLL-file-using-C/