Tagged Questions

2
votes
2answers
71 views

When using reflection to get at properties, How can I limit my search to just the subclass I’m interested in?

After successfully getting a list of specific types out of an assembly using reflection, I now want to get at the public properties of each of those. Each of these types derives from at least one …
1
vote
1answer
383 views

Reflection - getting properties of nested objects

refers to : http://stackoverflow.com/questions/906327/reflection-setting-type-of-returned-obj I have a object Call Jobcard with a few properties, one of which is another object called Customer with …
1
vote
2answers
158 views

Reflection - setting Type of returned obj?

I am populating different types objects with datarows with each attrivute of the relevant object = to the similiarly name field in the datarow. I'd like to use a generic function to do this. How do I …
5
votes
5answers
738 views

How do you get the all properties of a class and its base classes (up the hierarchy) with Reflection? (C#)

So what I have right now is something like this: PropertyInfo[] info = obj.GetType().GetProperties(BindingFlags.Public); where obj is some object. The problem is some of the properties I want …