I've gotten used to adding using System.Linq; for IEnumerable extension methods, but there have been times when I've tried to use an extension method on a class and it didn't show up in intellisense and I spent way too much time trying to figure out what's wrong before realizing I just need a using statement that Visual Studio didn't find for me. Is there a VS2010 extension that will find extension methods in the standard Ctrl + . View.ShowSmartTag feature?

link|improve this question

You want VS to search every static class in every assembly you've referenced for extension methods? That would be slow. – SLaks Jul 20 '11 at 14:12
isn't VS scanning every assembly anyways? – qntmfred Jul 20 '11 at 14:27
Yes, but not every static class. – SLaks Jul 20 '11 at 14:27
feedback

1 Answer

The Smart Tags wont usually show up if you dont have that assembly referenced in your project. If they are referenced in your project then it will usually find which assembly is using the same keyword your trying to get the "using/import assembly" statement from.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.