如何获得解决方案/项目中的扩展方法列表?
默认情况下,VS 2013中是否有任何内容可以实现类视图或使用ndepend cqlinq?
答案 0 :(得分:1)
您可以编写代码查询:
from m in Application.Methods
where m.IsExtensionMethod
select m
对于扩展组方法sby类型扩展的代码查询,请参阅: Getting list of types that are effected by an extension method in cqlinq