The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Assembly in .NET: Part 1
4 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.

Abhishek BhatPosted Feb 2, 2011, 7:06 AM
// Load assembly var objTest = System.Reflection.Assembly.LoadFrom("Test.dll"); Type[] typeArray = objTest.GetTypes(); foreach(Type t in typeArray) { Console.WriteLine(t.Name); } This code will do the job for you....
Rohatash KumareditedPosted Feb 2, 2011, 5:55 AMEdited Feb 2, 2011, 5:59 AM
hi Abhishek, its really good but i need some extra information related to assembly. could you tell me How to get types from assembly.
Dinesh BeniwalPosted Feb 2, 2011, 12:24 AM
Abhishek Good article on assembly its very helpful.
Vijay YadavPosted Feb 2, 2011, 12:10 AM
Hi Abhishek, Its a good post really helpful for others. Thanks, Vijay