Tagged Questions

11
votes
2answers
4k views

C#: List All Classes in Assembly

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?
1
vote
3answers
737 views

.NET Nested Classes

The current class library I am working on will have a base class (Field) with over 50 specific "field" types which will inherit from "Field" and nested for maintain readability. For example... ...