我有以下场景:
class A
{
string Foo;
}
Class B
{
A PropertyA;
}
Class C
{
B PropertyB;
}
如果我从对象C开始,是否有可能使用。net反射来获得A.Foo的值?我遇到的问题是:我通过PropertyInfo对象到达A。但是,它们没有存储实例信息。因此,我不能做GetProperty("Foo"). getvalue(....),因为我只有C类型的对象传入。
您必须获得每个属性返回的对象,然后在该实例上使用相同的反射过程以获得下一个"级别"深度。
例如: 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;