gpt4 book ai didi

c# - 如何使用反射动态设置对象实例的属性值?

转载 作者:太空狗 更新时间:2023-10-29 22:52:54 28 4
gpt4 key购买 nike

给定一个基本的类定义:

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 也进行了简化。

提前致谢

最佳答案

您传递的第一个参数应该是包含您要设置的属性的实例。如果它是静态属性,则为第一个参数传递 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);

关于c# - 如何使用反射动态设置对象实例的属性值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13082832/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com