0
Class A
{
  public B child {get; set;}
}

Class B
{
   public string childProperty {get; set;}
}

我得到所有财产

 var BType = AType.GetType().GetProperty("child");

我能够获得 A 的“Child”属性,但是如何从 BType 获得“childProperty”?

4

1 回答 1

1

您可以B使用以下方式获取类型BType.PropertyType

A AType = new A();

var BType = AType.GetType().GetProperty("child");
var childPropertyType = BType.PropertyType.GetProperty("childProperty");
于 2013-08-07T15:30:44.880 回答