up vote 3 down vote favorite
share [g+] share [fb]

Is there a way in Visual Studio (a hotkey) to automatically import a type (or choosing between known namespaces) like the Ctrl + O in Eclipse?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

When the red caret appears at the end of your member, just hit Shift + Alt + F10, then use arrows keys to choose the right option.

link|improve this answer
That doesn't automatically add the right 'using' declaration though. Resharper will. – Andrew Oct 9 '08 at 11:54
tried and never seen. thnks – Enreeco Oct 9 '08 at 11:56
Seems buggy under VB.NET :-/ – Laurent Oct 9 '08 at 12:12
feedback

Yes, VS.NET Can add the using for you. When you type in a class name, hit Ctrl + . and then Enter (the first option is 99.99% the right one, so just hit Enter). and you can have it add the using at the top of the file for the namespace of that class. I use it all the time.

This is easier than Shift + Alt + F10 + Enter as it's less keys and the . and Enter are closer.

link|improve this answer
Yeah, CTRL + . is shorter - Thanks for the tip. Sounds buggy too in VB.NET – Laurent Oct 9 '08 at 12:16
feedback

Look at JetBrain's excellent Resharper product. It does this for you.

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.