我需要从类T
- GetProperty<Foo>()
获取属性列表。我尝试了以下代码但它失败了。
样本类:
public class Foo {
public int PropA { get; set; }
public string PropB { get; set; }
}
我尝试了以下代码:
public List<string> GetProperty<T>() where T : class {
List<string> propList = new List<string>();
// get all public static properties of MyClass type
PropertyInfo[] propertyInfos;
propertyInfos = typeof(T).GetProperties(BindingFlags.Public |
BindingFlags.Static);
// sort properties by name
Array.Sort(propertyInfos,
delegate (PropertyInfo propertyInfo1,PropertyInfo propertyInfo2) { return propertyInfo1.Name.CompareTo(propertyInfo2.Name); });
// write property names
foreach (PropertyInfo propertyInfo in propertyInfos) {
propList.Add(propertyInfo.Name);
}
return propList;
}
我需要获取属性名称列表
预期输出:GetProperty<Foo>()
new List<string>() {
"PropA",
"PropB"
}
我尝试了很多stackoverlow引用,但我无法获得预期的输出。
参考:
答案 0 :(得分:5)
您的绑定标记不正确。
由于您的属性不是静态属性,而是实例属性,因此您需要将BindingFlags.Static
替换为BindingFlags.Instance
。
propertyInfos = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);
这将适当地查找您的类型上的公共,实例,非静态属性。您也可以完全省略绑定标志,并在这种情况下获得相同的结果。