2

How does one get the list of extension methods in a solution/project?

Is there anything in VS 2013 by default to achieve that like class view or using ndepend cqlinq?

jimjim
  • 2,414
  • 2
  • 26
  • 46

1 Answers1

1

You can just write the code query:

from m in Application.Methods
where m.IsExtensionMethod
select m

For a code query that group extension method sby types extended see: Getting list of types that are effected by an extension method in cqlinq

Community
  • 1
  • 1
Patrick from NDepend team
  • 13,237
  • 6
  • 61
  • 92