How to obtain a property value on descendant class - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T19:08:35Zhttp://stackoverflow.com/feeds/question/466352http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/466352/how-to-obtain-a-property-value-on-descendant-class2How to obtain a property value on descendant classAngryHacker2009-01-21T18:01:27Z2009-01-26T09:44:43Z
<p>I have a class (Descendant1) that inherits from a base class (BaseClass). An instance of a descendant class is passed into a method that takes BaseClass as a parameter. Then using reflection, it calls a property on the object.</p>
<pre><code>public class BaseClass { }
public class Descendant1 : BaseClass
{
public string Test1 { get { return "test1"; } }
}
public class Processor
{
public string Process(BaseClass bc, string propertyName)
{
PropertyInfo property = typeof(BaseClass).GetProperty(propertyName);
return (string)property.GetValue(bc, null);
}
}
</code></pre>
<p>My question is this. In the <strong>Process</strong> method, is it possible to figure out what the object really is (Descendant1), then declare an object (perhaps using Reflection) of that type and cast the BaseClass parameter to it, then do reflection acrobatics on it?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/466352/how-to-obtain-a-property-value-on-descendant-class/466388#4663886Answer by empi for How to obtain a property value on descendant classempi2009-01-21T18:14:13Z2009-01-21T18:14:13Z<p>i am not sure if i understand your question but maybe you are thinking of something like this:</p>
<pre><code> public string Process(BaseClass bc, string propertyName)
{
PropertyInfo property = bc.GetType().GetProperty(propertyName);
return (string)property.GetValue(bc, null);
}
</code></pre>
<p>bc.GetType() gets real type of bc (when you pass Descendant1 it will be Descendant1 not BaseClass).</p>