我有以下情况:
class A
{
string Foo;
}
Class B
{
A PropertyA;
}
Class C
{
B PropertyB;
}
如果我从对象C开始,是否可以使用.NET反射来获取A.Foo的值?我遇到的问题是: 我通过PropertyInfo对象到达A.但是,它们没有与它们一起存储的实例信息。因此,我不能做GetProperty(“Foo”)。GetValue(....),因为我只传入了C类型的对象。
答案 0 :(得分:4)
您必须获取每个属性返回的对象,然后在该实例上使用相同的反射过程来获得下一个“级别”。
例如:
C instance = GetMyCInstance();
B propertyB = instance.GetType().GetProperty("PropertyB").GetValue(instance) as B;
A propertyA = propertyB.GetType().GetProperty("PropertyA").GetValue(propertyB) as A;
string Foo = propertyA.GetType().GetProperty("Foo").GetValue(propertyA) as string;