如何使用propertyname访问C#中的类属性。就像我可以在JavaScript中使用property["propertyname"]
?
答案 0 :(得分:2)
要按名称访问属性的值,必须使用反射:
var propInfo = obj.GetType().GetProperty(propertyName);
var value = propInfo.GetValue(obj);
答案 1 :(得分:1)
如果有问题的类是您的,您可以覆盖索引运算符:
public object this[string key]
{
get
{
var property = typeof(YourClass).GetProperty(key);
return property.GetValue(this);
}
}
这样,您就可以object.Title
访问object["Title"]
。
当然这是一个精简版。您可能想要处理错误等等。您也可以将PropertyInfo
返回的GetProperty()
个对象缓存到Dictionary<string, PropertyInfo>
,因为使用反射非常慢。