里面的Desctiption的内容怎么获取?
假设你这个类叫Model,可以如下方式获取:
var description = typeof(Model).GetProperty("SiteName")?.GetCustomAttribute<DisplayAttribute>()?.Description;
可以通过反射获取!
这个东西,叫Attribute,看了下,1楼的回复应该就是可以的