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?
|
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?
| |||
feedback
|
|
Use
| |||
|
feedback
|
|
I'd just like to add to Jon's example. To get a reference to your own assembly, you can use:
If you want to examine an assembly that you have no reference to, you can use either of these:
If you intend to instantiate your type once you've found it:
See the Assembly class documentation for more information. Once you have the reference to the | |||||||||
feedback
|