I have instances of class A and B, and both classes implement a member 'Text'. Is there a way to access member Text in a generic way? I'm hoping for something analogous to the javascript way of simply saying:

instance['Text'] = value;

Note: these two classes unfortunately do not both implement the same interface with a Text member.

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Unlike javascript, C# is a static language and if both classes don't implement a common interface or base class you could use reflection to achieve the same goal.

instance.GetType().GetProperty("Text").SetValue(instance, "new value", null);
link|improve this answer
Excellent! Exactly what I was looking for. – Protector one Dec 5 '09 at 18:09
feedback

If you can't make A and B implement the same interface, then you need to use reflection to access any class member by name, something like this:

typeof(A).GetProperty("Text").GetValue(theInstance, null);

where theInstance would be an instance of the A class.

link|improve this answer
Thanks for naming the technique! You almost had best answer. ;) – Protector one Dec 4 '09 at 8:42
feedback

Ideally you should have single class with member "Text" which will be base for A and B. Probably it is not convinient, but it is more reliably and correct. Try not to use reflection where you can do the same in other way.

link|improve this answer
feedback

If you can make A and B implement the same interface

 interface ISomeGenericNameForAAndB
{
    string Text { get; }
}
class A :ISomeGenericNameForAAndB
{
    public string Text { get { return "some Text from A"; } }    
}
class B : ISomeGenericNameForAAndB
{
    public string Text { get { return "some Text from B"; } }
}

ISomeGenericNameForAAndB anAInstance = new A();
ISomeGenericNameForAAndB aBInstance = new B();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.