show/hide this revision's text 3 added 176 characters in body

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.

show/hide this revision's text 2 added 331 characters in body

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.

Is there a flag that indicates whether the property belongs to the base class or to

Note: I found the current class?solution, it's

  B boy = new B();
            var pList = boy.GetType().GetProperties(BindingFlags.Public |
                  BindingFlags.DeclaredOnly |
                  BindingFlags.Instance);
            Assert.AreEqual(1, pList.Length);
show/hide this revision's text 1

Test whether a property is declared in the derived class

I have two classes

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

Class B: A
{
 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.

Is there a flag that indicates whether the property belongs to the base class or to the current class?