我的代码接收透明代理而不是原始实例。
虽然这var type = obj.GetType();
会产生原始类的类型,但会抛出以下代码TargetException
:
对象与目标类型不匹配
var value = property.GetValue(obj, null);
哪里property
有一个type.GetProperties()
我的代码接收透明代理而不是原始实例。
虽然这var type = obj.GetType();
会产生原始类的类型,但会抛出以下代码TargetException
:
对象与目标类型不匹配
var value = property.GetValue(obj, null);
哪里property
有一个type.GetProperties()