http://www.cnblogs.com/datacool/p/datacool20180417.html
var t = typeof(UserModel);
PropertyInfo[] propertyList = t.GetProperties();
foreach(PropertyInfo item in propertyList)
{
//Console.WriteLine(item.Attributes);
//Console.WriteLine(item.CustomAttributes);
Console.WriteLine(item.Name);
Console.WriteLine(t.GetProperty(item.Name).GetCustomAttribute<DisplayAttribute>().Name);
}
Console.ReadLine();
这样不知道可以不?可以参考一下
嗯,最终也是用的这个办法
试下 [DisplayName("...")]
谢谢指点,确实是这个属性。现在可以了