如何在Windows应用商店应用中使用C#中的反射来获取公共属性

时间:2015-06-22 09:27:56

标签: c# winrt-xaml

我正在使用

typeof(ClassName).GetRuntimeProperties()

此方法将显示所有属性。如何从没有绑定标志的班级获得公共财产,任何可能的方式请告诉我。

1 个答案:

答案 0 :(得分:0)

IEnumerable<PropertyInfo> properties = 
    typeof(TClass)
        .GetRuntimeProperties()
        .Where( pi => pi.CanRead && pi.GetGetMethod().IsPublic );