我正在使用
typeof(ClassName).GetRuntimeProperties()
此方法将显示所有属性。如何从没有绑定标志的班级获得公共财产,任何可能的方式请告诉我。
答案 0 :(得分:0)
IEnumerable<PropertyInfo> properties =
typeof(TClass)
.GetRuntimeProperties()
.Where( pi => pi.CanRead && pi.GetGetMethod().IsPublic );