I'd like to output (programmatically - C#) a list of all classes in my assembly.

Any hints or sample code how to do this? Reflection?

link|improve this question

65% accept rate
If your intention is to examine an assembly that is not referenced by your project, see my updated answer. – Thorarin Aug 22 '09 at 10:35
feedback

2 Answers

up vote 22 down vote accepted

Use Assembly.GetTypes. For example:

Assembly mscorlib = typeof(string).Assembly;
foreach (Type type in mscorlib.GetTypes())
{
    Console.WriteLine(type.FullName);
}
link|improve this answer
feedback

I'd just like to add to Jon's example. To get a reference to your own assembly, you can use:

Assembly myAssembly = Assembly.GetExecutingAssembly();

System.Reflection namespace.

If you want to examine an assembly that you have no reference to, you can use either of these:

Assembly assembly = Assembly.ReflectionOnlyLoad(fullAssemblyName);
Assembly assembly = Assembly.ReflectionOnlyLoadFrom(fileName);

If you intend to instantiate your type once you've found it:

Assembly assembly = Assembly.Load(fullAssemblyName);
Assembly assembly = Assembly.LoadFrom(fileName);

See the Assembly class documentation for more information.

Once you have the reference to the Assembly object, you can use assembly.GetTypes() like Jon already demonstrated.

link|improve this answer
How could I reference a completely different assembly that is in my solution? – Alex Aug 22 '09 at 10:13
3  
The easiest way is to use typeof with a type you know is in that assembly, and then the Assembly property, as in my example. – Jon Skeet Aug 22 '09 at 10:17
If you want to reference an assembly, say abc.dll, that is in your solution and if you are ok hardcoding the dll name, another approach to referencing the assembly is: ` Assembly assembly = Assembly.Load("abc");` – Kash Mar 8 at 18:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.