Get by reflection properties of class ,but not from inherited class

前端 未结 4 688
长情又很酷
长情又很酷 2020-12-25 09:27
class Parent {
   public string A { get; set; }
}

class Child : Parent {
   public string B { get; set; }
}

I need to get only property B, without

4条回答
提交回复
热议问题