Tagged Questions
4
votes
2answers
169 views
List all concrete or abstract classes of object
Is it possible in C#, via reflection or some other method, to return a list all superclasses (concrete and abstract, mostly interested in concrete classes) of an object. For example passing in a ...
3
votes
6answers
2k views
C# : how do you obtain a class' base class?
In C#, how does one obtain a reference to the base class of a given class?
For example, suppose you have a certain class, MyClass, and you want to obtain a reference to MyClass' superclass.
I have ...
2
votes
4answers
796 views
Can I change a private readonly inherited field in C# using reflection?
like in java I have:
Class.getSuperClass().getDeclaredFields()
how I can know and set private field from a superclass?
I know this is strongly not recommended, but I am testing my application and ...
2
votes
3answers
751 views
.NET / C# - Reflection Help - Classes in an Assembly
What is the best way to loop through an assembly, and for each class in the assembly list out it's "SuperClass"?
1
vote
3answers
167 views
How to achieve some level of polymorphism in C#?
This is a simplified version of the problem that I've been trying to solve recently.
I have the following two classes:
class Container { }
class Container<T> : Container
{
T Value ...
0
votes
1answer
111 views
Error populating ObservableCollection
I have this code:
ObservableCollection<GuiQuestionCluster> clusters = new ObservableCollection<GuiQuestionCluster>(this.ExaminationViewModel.Examination.QuestionClusters);
So, ...
0
votes
2answers
146 views
C# viewmodel: model --> Can't get typecasting working
I am creating a linq-to-sql model with EF, and have a class that works well, however, I want to be able to make additions to the class and not have them overwritten when I make changes with EF, so I ...