3

我想检查 propertyInfo 以确定XmlIgnore属性是否应用于给定属性。我怎样才能做到这一点?

4

2 回答 2

11
bool b = type.GetProperty("MyProp")
             .GetCustomAttributes(false)
             .Any(a => a is XmlIgnoreAttribute);
于 2012-09-06T07:09:26.720 回答
0
typeof(string).GetProperty("Length").GetCustomAttributes(typeof(some attr))
于 2012-09-06T07:11:49.027 回答