小编典典

如何根据名称获取属性值

all

有没有办法根据对象的名称获取对象属性的值?

例如,如果我有:

public class Car : Vehicle
{
   public string Make { get; set; }
}

var car = new Car { Make="Ford" };

我想编写一个方法,我可以在其中传递属性名称并返回属性值。IE:

public string GetPropertyValue(string propertyName)
{
   return the value of the property;
}

阅读 157

收藏
2022-08-15

共1个答案

小编典典

return car.GetType().GetProperty(propertyName).GetValue(car, null);
2022-08-15