Tagged Questions

4
votes
2answers
284 views

C#: List All Classes in Assembly

Hello, 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
233 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... …
1
vote
2answers
354 views

Best Way to Organize PHP Class Heirarchy

I've got a somewhat primitive framework I've been using for most of my projects, but a general design issue came to mind that I haven't been able to work out yet. For a given application, should I …