1

任何人都知道在使用 Linq 时如何获取 Obsolete 属性?

我正在做 NDepend 但无论如何我想进行查询并从应该被“弃用”的方法中获取所有过时的属性

Obsolete["I WANT THIS STRING"]

4

1 回答 1

1

我相信这样的东西是你正在寻找的

from type in YourAssembly
from p in type.GetProperties()
from m in type.GetMembers()
let propertyAttributes = p.GetCustomAttributes(true)
let methodAttributes = m.GetCustomAttributes(true)
where propertyAttributes.Any(a => a.GetType() == typeof(ObsoleteAttribute))
     || methodAttributes.Any(a => a.GetType() == typeof(ObsoleteAttribute))
select new type;

它查询程序集中的所有类型并选择那些具有 ObsoleteAttribute 的属性或方法的类型。

于 2013-07-16T15:13:40.430 回答