class A
{
public B;
public C;
}
C func()
{
A a=new A();
// set the fields in private
return a.c;
}
我只有func()
返回的对象C c=func()
如何获取连接字段b的值?
我知道我可以通过Type.ReflectedType获取b的类型,但我不知道如何获取b的值。
答案 0 :(得分:0)
我自己解决了。
使用Delegate.Target获取父对象