反射语法
假设有如下类,及其对象a:
public class A
{
public string Name { get; set; }
}
获取属性值语法:
Type type = a.GetType();
var property = type.GetProperty("Name");
string value = (string)property.GetValue(a, null);//获取属性值
property.SetValue(a, "张得帅", null);//设置属性值