class Parent {
public string A { get; set; }
}
class Child : Parent {
public string B { get; set; }
}
속성 A없이 속성 B 만 가져와야하지만
Child.GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance)
두 속성 모두 반환 : /