Test whether a property is declared in the derived class - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T19:46:56Zhttp://stackoverflow.com/feeds/question/584660http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/584660/test-whether-a-property-is-declared-in-the-derived-class0Test whether a property is declared in the derived classNgu Soon Hui2009-02-25T03:57:05Z2009-02-25T04:39:36Z
<p>I have two classes</p>
<pre><code>public class A
{
public int BaseA
{get;set;}
}
public Class B: A
{
public int BaseB
{get;set;}
}
</code></pre>
<p>I can get the Properties for the Class B by using typeof(B).GetProperties(). However, this would include both the BaseA and BaseB properties. But I want to obtain the BaseB property only. </p>
<p>Note: I found the solution, it's </p>
<pre><code> B boy = new B();
var pList = boy.GetType().GetProperties(BindingFlags.Public |
BindingFlags.DeclaredOnly |
BindingFlags.Instance);
Assert.AreEqual(1, pList.Length);
</code></pre>
<p>A similar solution <a href="http://stackoverflow.com/questions/245401/how-do-i-get-the-properties-of-an-object-using-reflection">can be found here</a>. </p>
http://stackoverflow.com/questions/584660/test-whether-a-property-is-declared-in-the-derived-class/584677#5846773Answer by Ants for Test whether a property is declared in the derived classAnts2009-02-25T04:04:03Z2009-02-25T04:04:03Z<p>Look at using BindingFlags.DeclaredOnly when calling Type.GetProperties().</p>