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?
| |||
|
feedback
|
|
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. | |||
|
feedback
|
staticclass in every assembly you've referenced for extension methods? That would be slow. – SLaks Jul 20 '11 at 14:12