以字符串形式访问对象属性并设置其值

时间:2010-05-25 13:44:36

标签: c# string eval accessor databinder

我有一个Account类的实例。每个帐户对象都有一个所有者,参考等。

我可以访问帐户属性的一种方法是通过

等访问器
account.Reference;

但我希望能够使用动态字符串选择器访问它,如:

account["PropertyName"];

就像在JavaScript中一样。所以我会account["Reference"]返回值,但我也想在之后分配一个新值,如:

account["Reference"] = "124ds4EE2s";

我注意到我可以使用

DataBinder.Eval(account,"Reference") 

根据字符串获取属性,但使用此属性我无法为属性赋值。

关于我如何做到这一点的任何想法?

10 个答案:

答案 0 :(得分:60)

首先,你应该避免使用它; C#是一种强类型语言,因此请充分利用该方面的类型安全性和性能优势。

如果您有合理的理由动态获取和设置属性的值(换句话说,当代码中无法定义类型和/或属性名称时),那么您将不得不使用反射。

最直观的方式是:

object value = typeof(YourType).GetProperty("PropertyName").GetValue(yourInstance);
...
typeof(YourType).GetProperty("PropertyName").SetValue(yourInstance, "value");

但是,您可以缓存PropertyInfo对象以使其更具可读性:

System.Reflection.PropertyInfo prop = typeof(YourType).GetProperty("PropertyName");

object value = prop.GetValue(yourInstance);
...
prop.SetValue(yourInstance, "value");

答案 1 :(得分:31)

你可以尝试将索引器与反射结合起来......

public object this[string propertyName]
{
    get
    {
        PropertyInfo property = GetType().GetProperty(propertyName);
        return property.GetValue(this, null);
    }
    set
    {
        PropertyInfo property = GetType().GetProperty(propertyName);
        property.SetValue(this,value, null);
    }
}

答案 2 :(得分:5)

如果它们是您自己的对象,您可以提供索引器来访问这些字段。我不是真的推荐这个,但它会允许你想要的东西。

public object this[string propertyName]
{
    get
    {
        if(propertyName == "Reference")
            return this.Reference;
        else
            return null;
    }
    set
    {
        if(propertyName == "Reference")
            this.Reference = value;
        else
            // do error case here            
    }
}

请注意,执行此操作时会失去类型安全性。

答案 3 :(得分:5)

如果您使用的是.Net 4,则可以立即使用动态关键字。

dynamic foo = account;
foo.Reference = "124ds4EE2s";

答案 4 :(得分:5)

我使用了Richard的反射方法,但是详细说明了set方法来处理正在使用的其他类型,例如字符串和空值。

public object this[string propertyName]
{
    get
    {
        PropertyInfo property = GetType().GetProperty(propertyName);
        return property.GetValue(this, null);
    }
    set
    {
        PropertyInfo property = GetType().GetProperty(propertyName);
        Type propType = property.PropertyType;
        if (value == null)
        {
            if (propType.IsValueType && Nullable.GetUnderlyingType(propType) == null)
            {
                throw new InvalidCastException();
            }
            else
            {
                property.SetValue(this, null, null);
            }
        }
        else if (value.GetType() == propType)
        {
            property.SetValue(this, value, null);
        }
        else
        {
            TypeConverter typeConverter = TypeDescriptor.GetConverter(propType);
            object propValue = typeConverter.ConvertFromString(value.ToString());
            property.SetValue(this, propValue, null);
        }
    }
}

如果转换不起作用,SetValue()函数将抛出错误。

答案 5 :(得分:2)

我个人更喜欢使用扩展方法,所以这是我的代码:

public static class ReflectionExtensions
{
    public static void SetPropertyValue(this object Target,
        string PropertyName,
        object NewValue)
    {
        if (Target == null) return; //or throw exception

        System.Reflection.PropertyInfo prop = Target.GetType().GetProperty(PropertyName);

        if (prop == null) return; //or throw exception

        object value = prop.GetValue(Target, null);

        prop.SetValue(Target, NewValue, null);
    }
}

答案 6 :(得分:1)

您需要使用Reflection:

PropertyInfo property = typeof(Account).GetProperty("Reference");

property.SetValue(myAccount, "...", null);

请注意,这将非常慢。

答案 7 :(得分:1)

我同意以前的海报,你可能需要使用这些属性。与直接财产访问相比,反思非常缓慢。

另一方面,如果需要维护用户定义属性的列表,则不能使用C#属性。您需要假装自己是Dictionary,或者需要公开行为类似于Dictionary的属性。以下是如何使Account类支持用户定义属性的示例:

public class Account
{
    Dictionary<string, object> properties;
    public object this[string propertyName]
    {
        get
        {
            if (properties.ContainsKey[propertyName])
                return properties[propertyName];
            else
                return null;
        }
        set
        {
            properties[propertyName] = value;
        }
    }
}

答案 8 :(得分:0)

使用反射体和表达式体

        public dynamic this[string memberName]
        {
            get => GetType().GetProperty(memberName).GetValue(this, null);
            set => GetType().GetProperty(memberName).SetValue(this,value, null);
        }

答案 9 :(得分:-1)

这是一个简单的例子,希望对你有帮助

static void Main(string[] args)
{
    Operators op = new Operators()
    {
        ID = 1,
        Name = "Edward",
        email = "e.lorenz@mail.com",
        Pass = "123456",
        Auth1 = "EDF3242523@FFSDGDF"
    };

    var typei = op.GetType();
    var ss = typei.GetProperties().Where(m => m.GetCustomAttributes<Password>().Count() > 0);

    foreach (var item in ss)
    {
        var text = typei.GetProperty(item.Name).GetValue(op).ToString();
        
        typei.GetProperty(item.Name).SetValue(op, Encrypt(text));
    }

    Console.WriteLine(op.Pass);
    Console.WriteLine(op.Auth1);

    Console.ReadKey();
}