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?
3
votes
3answers
148 views
Help refactor my C# code to be more maintainable and to use best coding practices
I have this C# class structure that I would like to refactor to use best coding standards (use interfaces/abstract classes) so it can be more maintainable and reusable. The code as it is right now ...
1
vote
1answer
58 views
NHibernate and interfaces with different implementations
I have recently started working with C# and NHibernate so all this is quite novice to me.
In the application I'm building I need to calculate distances between UK postcodes.
One of the approaches is ...
1
vote
0answers
124 views
Generic Subclasses linked to Generic Superclasses
I am creating a class that can inherit properties from all its super-classes. That's all nice and standard but I have a unique problem of the lowest subclass needing to inherit from different ...
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...
...