I've come across a strange behaviour in .NET/Reflection and cannot find any solution/explanation for this:
class A
{
public virtual string TestString { get; set; }
}
class B : A
{
public override string TestString
{
get { return "x"; }
}
}
Since properties are just pairs of functions (get_PropName(), set_PropName()) overriding only the "get" part should leave the "set" part as it is in the base class. And this is just what happens if you try to instanciate class B and assign a value to TestString, it uses the implementation of class A.
But what happens if I look at the instantiated object of class B in reflection is this:
PropertyInfo propInfo = b.GetType().GetProperty("TestString");
propInfo.CanRead ---> true
propInfo.CanWrite ---> false(!)
And if I try to invoke the setter from reflection with:
propInfo.SetValue("test", b, null);
I'll even get an ArgumentException with the following message:
Property set method not found.
Is this as expected? Because I don't seem to find a combination of BindingFlags for the GetProperty() method that returns me the property with a working get/set pair from reflection.
EDIT:
I would expect that behaviour if I'd use BindingFlags.DeclaredOnly on GetProperties() but the default (BindingFlags.Default) takes inherited members into account and the setter of TestString clearly is inherited!
var b = new B(); b.TestString = "foo";but reflection will tell you thatB.TestStringhas no setter. In this respectGetPropertyappears to behave differently toGetMethodetc. – LukeH Nov 15 '11 at 17:38var b = new B(); b.TestString = "foo";. It tells me (correctly) that property TestString cannot be assigned because it is read only. I can doA b = new B(); b.TestString = "foo";, but that is because I am storing B as A, and A can set theTestStringproperty. It doesn't actually do anything though because when getting the value, it readsB.get_TestString(), notA.get_TestString()– Rachel Nov 15 '11 at 17:48B.TestStringwasn't marked asoverride, but not as it stands. – LukeH Nov 15 '11 at 18:01override, shadowing instead of overriding the property. – CodesInChaos Nov 15 '11 at 18:16