我想通过反射设置一个对象的属性,值类型为字符串。
例如,假设我有一个Ship类,它的纬度属性是double。
这是我想做的:
Ship ship = new Ship();
string value = "5.5";
PropertyInfo propertyInfo = ship.GetType().GetProperty("Latitude");
propertyInfo.SetValue(ship, value, null);
这将抛出一个ArgumentException:
类型为System的对象。字符串'不能转换为'System.Double'类型。
如何将值转换为适当的类型,基于propertyInfo?
如果你正在编写Metro应用程序,你应该使用其他代码:
Ship ship = new Ship();
string value = "5.5";
PropertyInfo propertyInfo = ship.GetType().GetTypeInfo().GetDeclaredProperty("Latitude");
propertyInfo.SetValue(ship, Convert.ChangeType(value, propertyInfo.PropertyType));
注意:
ship.GetType().GetTypeInfo().GetDeclaredProperty("Latitude");
而不是
ship.GetType().GetProperty("Latitude");
我注意到很多人都推荐Convert。ChangeType -这在某些情况下确实有效,但是一旦你开始涉及可空类型,你就会开始收到InvalidCastExceptions:
http://weblogs.asp.net/pjohnson/archive/2006/02/07/Convert.ChangeType-doesn_2700_t-handle-nullables.aspx
几年前编写了一个包装器来处理这个问题,但这也不是完美的。
http://weblogs.asp.net/pjohnson/archive/2006/02/07/Convert.ChangeType-doesn_2700_t-handle-nullables.aspx