小编典典

如何基于名称获取属性值

c#

有没有一种方法可以根据对象的名称获取对象的属性值?

例如,如果我有:

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

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

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

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

阅读 274

收藏
2020-05-19

共1个答案

小编典典

return car.GetType().GetProperty(propertyName).GetValue(car, null);
2020-05-19