341

我想通过反射设置一个对象的属性,其值为 type string。因此,例如,假设我有一个Ship类,其属性为Latitude,即double.

这是我想做的:

Ship ship = new Ship();
string value = "5.5";
PropertyInfo propertyInfo = ship.GetType().GetProperty("Latitude");
propertyInfo.SetValue(ship, value, null);

照原样,这会引发ArgumentException

“System.String”类型的对象无法转换为“System.Double”类型。

如何将值转换为正确的类型,基于propertyInfo

4

12 回答 12

569

您可以使用Convert.ChangeType()- 它允许您使用任何类型的运行时信息IConvertible来更改表示格式。但是,并非所有转换都是可能的,如果您想支持非IConvertible.

相应的代码(没有异常处理或特殊情况逻辑)将是:

Ship ship = new Ship();
string value = "5.5";
PropertyInfo propertyInfo = ship.GetType().GetProperty("Latitude");
propertyInfo.SetValue(ship, Convert.ChangeType(value, propertyInfo.PropertyType), null);
于 2009-07-06T20:44:59.807 回答
35

正如其他几个人所说,你想使用Convert.ChangeType

propertyInfo.SetValue(ship,
    Convert.ChangeType(value, propertyInfo.PropertyType),
    null);

实际上,我建议您查看整个ConvertClass

这个类和许多其他有用的类都是SystemNamespace的一部分。我发现每年左右扫描该名称空间以查看我错过了哪些功能很有用。试试看!

于 2009-07-06T20:44:54.237 回答
22

我尝试了LBushkin的答案,效果很好,但它不适用于空值和可为空的字段。所以我把它改成了这样:

propertyName= "Latitude";
PropertyInfo propertyInfo = ship.GetType().GetProperty(propertyName);
if (propertyInfo != null)
{
     Type t = Nullable.GetUnderlyingType(propertyInfo.PropertyType) ?? propertyInfo.PropertyType;
     object safeValue = (value == null) ? null : Convert.ChangeType(value, t);
     propertyInfo.SetValue(ship, safeValue, null);
}
于 2017-01-04T14:51:33.453 回答
20

我注意到很多人都在推荐Convert.ChangeType- 这在某些情况下确实有效,但是一旦您开始涉及nullable类型,您就会开始接收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

于 2010-08-13T11:08:06.367 回答
12

您可以使用类型转换器(无错误检查):

Ship ship = new Ship();
string value = "5.5";
var property = ship.GetType().GetProperty("Latitude");
var convertedValue = property.Converter.ConvertFrom(value);
property.SetValue(self, convertedValue);

在组织代码方面,您可以创建一种 mixin,它会产生如下代码:

Ship ship = new Ship();
ship.SetPropertyAsString("Latitude", "5.5");

这将通过以下代码实现:

public interface MPropertyAsStringSettable { }
public static class PropertyAsStringSettable {
  public static void SetPropertyAsString(
    this MPropertyAsStringSettable self, string propertyName, string value) {
    var property = TypeDescriptor.GetProperties(self)[propertyName];
    var convertedValue = property.Converter.ConvertFrom(value);
    property.SetValue(self, convertedValue);
  }
}

public class Ship : MPropertyAsStringSettable {
  public double Latitude { get; set; }
  // ...
}

MPropertyAsStringSettable可以重复用于许多不同的类。

您还可以创建自己的自定义类型转换器以附加到您的属性或类:

public class Ship : MPropertyAsStringSettable {
  public Latitude Latitude { get; set; }
  // ...
}

[TypeConverter(typeof(LatitudeConverter))]
public class Latitude { ... }
于 2010-09-13T13:51:17.240 回答
6

您可能正在寻找Convert.ChangeType方法。例如:

Ship ship = new Ship();
string value = "5.5";
PropertyInfo propertyInfo = ship.GetType().GetProperty("Latitude");
propertyInfo.SetValue(ship, Convert.ChangeType(value, propertyInfo.PropertyType), null);
于 2009-07-06T20:48:30.703 回答
5

使用Convert.ChangeType和获取要从PropertyInfo.PropertyType.

propertyInfo.SetValue( ship,
                       Convert.ChangeType( value, propertyInfo.PropertyType ),
                       null );
于 2009-07-06T20:48:48.317 回答
5

我会用一个一般性的答案来回答这个问题。通常这些答案不适用于指导。这也是一个带有指南的工作版本。

var stringVal="6e3ba183-89d9-e611-80c2-00155dcfb231"; // guid value as string to set
var prop = obj.GetType().GetProperty("FooGuidProperty"); // property to be setted
var propType = prop.PropertyType;

// var will be type of guid here
var valWithRealType = TypeDescriptor.GetConverter(propType).ConvertFrom(stringVal); 
于 2018-05-30T08:35:04.257 回答
3

或者你可以试试:

propertyInfo.SetValue(ship, Convert.ChangeType(value, propertyInfo.PropertyType), null);

//But this will cause problems if your string value IsNullOrEmplty...
于 2009-07-06T20:47:37.507 回答
2

如果您正在编写 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");
于 2013-10-10T08:22:55.097 回答
0

使用以下代码应该可以解决您的问题:

item.SetProperty(prop.Name, Convert.ChangeType(item.GetProperty(prop.Name).ToString().Trim(), prop.PropertyType));
于 2019-06-03T10:16:25.613 回答
-11

您是想玩 Reflection 还是想构建一个生产软件?我会质疑您为什么要使用反射来设置属性。

Double new_latitude;

Double.TryParse (value, out new_latitude);
ship.Latitude = new_latitude;
于 2009-07-06T20:57:55.787 回答