考虑这个代码:
var future = new Future(); future.GetType().GetProperty(info.Name).SetValue(future,converted);
在上面的代码中,我们应该传递SetValue的两个参数.首先,我们要设置其属性的对象.二,新价值.但是我们选择具体的属性.
为什么我们应该传递第一个参数来设置值,因为我们已经设置了未来的对象!
解决方法
因为未来的对象是一个实例. PropertyInfo从类型(Type type = future.GetType();)中检索,并没有绑定到任何实例.这就是为什么你必须传递SetValue()中的实例.
所以:
var future = new Future(); var propertyName = "..."; Type type = future.GetType(); PropertyInfo propertyInfo = type.GetProperty(propertyName); propertyInfo.SetValue(future,value);
您可以重用propertyInfo来设置其他实例的属性.