class Parent {
public string A { get; set; }
}
class Child : Parent {
public string B { get; set; }
}
Potrzebuję tylko właściwości B, bez właściwości A, ale
Child.GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance)
zwraca obie właściwości: /