vote up 0 vote down star

I have two classes

public class A
{
  public int BaseA
{get;set;}
}

public Class B: A
{
 public int BaseB
{get;set;}
}

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.

Note: I found the solution, it's

  B boy = new B();
            var pList = boy.GetType().GetProperties(BindingFlags.Public |
                  BindingFlags.DeclaredOnly |
                  BindingFlags.Instance);
            Assert.AreEqual(1, pList.Length);

A similar solution can be found here.

flag

49% accept rate

1 Answer

vote up 3 vote down check

Look at using BindingFlags.DeclaredOnly when calling Type.GetProperties().

link|flag
Sorry! It does work. – Ngu Soon Hui Feb 25 at 4:33

Your Answer

Get an OpenID
or

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