5

给定一个基本的类定义:

using System.Reflection;

public class Car()
{
  public int speed {get;set;}

  public void setSpeed()
  {
       Type type = this.GetType(); 
       PropertyInfo property = type.GetProperty(PropertyName );
       property.SetValue(type, Convert.ToInt32(PropertyValue), null);
  }
}

此代码示例已简化并且不使用动态类型转换,我只想要一个工作示例来在实例上设置该属性。

编辑:上面代码中的 PropertyName 和 PropertyValue 也被简化了。

提前致谢

4

1 回答 1

9

您传递的第一个参数应该是持有您希望设置的属性的实例。如果它是静态属性,则为第一个参数传递 null。在您的情况下,将代码更改为:

  public void setSpeed()
  {
       Type type = this.GetType(); 
       PropertyInfo property = type.GetProperty(PropertyName );
       property.SetValue(this, Convert.ToInt32(PropertyValue), null);
  }

对于一个天真的类型转换,你可以做

   var value = Convert.ChangeType(PropertyValue,property.PropertyType);
   property.SetValue(this, value, null);
于 2012-10-26T07:45:56.827 回答