Test whether a property is declared in the derived class - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T19:46:56Z http://stackoverflow.com/feeds/question/584660 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/584660/test-whether-a-property-is-declared-in-the-derived-class 0 Test whether a property is declared in the derived class Ngu Soon Hui 2009-02-25T03:57:05Z 2009-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#584677 3 Answer by Ants for Test whether a property is declared in the derived class Ants 2009-02-25T04:04:03Z 2009-02-25T04:04:03Z <p>Look at using BindingFlags.DeclaredOnly when calling Type.GetProperties().</p>