Tagged Questions
The class-structure tag has no wiki summary.
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 ...
2
votes
1answer
39 views
Why can't I assign to undeclared attributes of an object() instance but I can with custom classes?
Basically I want to know why this works:
class MyClass:
pass
myObj = MyClass()
myObj.foo = 'a'
But this returns an AttributeError:
myObj = object()
myObj.foo = 'a'
How can I tell which ...
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
2answers
305 views
How do I pass an object in Java from Class B to Class C via Class A without duplication
Let's say I have 3 classes.
Class A (extends Activity)
Class B
Class C (extends View)
A creates a B object that holds a Bitmap. A also invalidates C. C's onDraw draws a Bitmap to its Canvas.
...
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
736 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
959 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 ...
0
votes
1answer
12 views
Class Architecture Question
Just after some opinions on this fairly simple issue.
Say, I have a DocumentParser class, that extracts lots of data from an excel spreadsheet. The data that is captured is modelled with another ...
0
votes
2answers
107 views
Assigning dynamic values with variables / constants in classes
Iv'e always been aware that you cannot set dynamic values to variables within a class structure, but is there any way around this?
I have this interface:
interface IUserPermissions
{
/*
...
0
votes
3answers
2k views
if condition in uml class diagram?
if "attribute" is true do this "operation" else do nothing.
How do i show this in uml class diagram.
Thank you,
kim