vote up 1 vote down star

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?

flag

3 Answers

vote up 2 vote down check

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|flag
That doesn't automatically add the right 'using' declaration though. Resharper will. – Andrew Oct 9 '08 at 11:54
tried and never seen. thnks – Scuffia Oct 9 '08 at 11:56
Seems buggy under VB.NET :-/ – ControlBreak Oct 9 '08 at 12:12
vote up 1 vote down

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

link|flag
vote up 2 vote down

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 its les keys and the . and enter are closer.

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

Your Answer

Get an OpenID
or

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