我需要访问在第三方程序集中声明的一些标记为内部的成员。
我想从类中的特定内部属性返回一个值。然后我想从该返回值的属性中检索一个值。但是,这些属性返回的类型也是内部的并在此第三方程序集中声明。
我见过的这样做的例子很简单,只显示返回 int 或 bool。有人可以给出一些处理这种更复杂情况的示例代码吗?
我需要访问在第三方程序集中声明的一些标记为内部的成员。
我想从类中的特定内部属性返回一个值。然后我想从该返回值的属性中检索一个值。但是,这些属性返回的类型也是内部的并在此第三方程序集中声明。
我见过的这样做的例子很简单,只显示返回 int 或 bool。有人可以给出一些处理这种更复杂情况的示例代码吗?
您只需继续挖掘返回的值(或 PropertyInfo 的 PropertyType):
你
sing System;
using System.Reflection;
public class Foo
{
public Foo() {Bar = new Bar { Name = "abc"};}
internal Bar Bar {get;set;}
}
public class Bar
{
internal string Name {get;set;}
}
static class Program
{
static void Main()
{
object foo = new Foo();
PropertyInfo prop = foo.GetType().GetProperty(
"Bar", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
object bar = prop.GetValue(foo, null);
prop = bar.GetType().GetProperty(
"Name", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
object name = prop.GetValue(bar, null);
Console.WriteLine(name);
}
}
您始终可以将其作为对象检索,并在返回的类型上使用反射来调用其方法并访问其属性。