使用反射获取嵌套属性值

发布于 2024-11-01 02:19:29 字数 282 浏览 0 评论 0原文

我有以下场景:

class A
{
   string Foo;
}

Class B
{
   A PropertyA;
}

Class C
{
   B PropertyB;
}

如果我从对象 C 开始,是否可以使用 .NET 反射来获取 A.Foo 的值?我遇到的问题是这样的: 我通过 PropertyInfo 对象到达 A。但是,他们没有存储实例信息。因此,我无法执行 GetProperty("Foo").GetValue(....) 因为我只传入了 C 类型的对象。

I have the following scenario:

class A
{
   string Foo;
}

Class B
{
   A PropertyA;
}

Class C
{
   B PropertyB;
}

Is it possible using .NET reflection to get the value of A.Foo if I start with object C? The problem I am running into is this:
I get to A through PropertyInfo objects. However, they don't have the instance information stored with them. Therefore, I can't do GetProperty("Foo").GetValue(....) since I only have object of type C passed in.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追星践月 2024-11-08 02:19:29

您必须获取每个属性返回的对象,然后在该实例上使用相同的反射过程来获取下一个“级别”深度。

例如:

 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;

You have to get the object returned by each property, then use the same reflection procedure on that instance to get the next "level" deep.

For example:

 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;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文