Class A
{
public B child {get; set;}
}
Class B
{
public string childProperty {get; set;}
}
我得到所有财产
var BType = AType.GetType().GetProperty("child");
我能够获得 A 的“Child”属性,但是如何从 BType 获得“childProperty”?
Class A
{
public B child {get; set;}
}
Class B
{
public string childProperty {get; set;}
}
我得到所有财产
var BType = AType.GetType().GetProperty("child");
我能够获得 A 的“Child”属性,但是如何从 BType 获得“childProperty”?