有没有一种方法可以根据对象的名称来获得对象属性的值?
例如:
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;
}