VS2012 equivalent of Eclipse's default Ctrl-Shift-O?
Posted
by
x3chaos
on Stack Overflow
See other posts from Stack Overflow
or by x3chaos
Published on 2013-10-20T21:48:33Z
Indexed on
2013/10/20
21:53 UTC
Read the original article
Hit count: 327
c#
|visual-studio-2012
I'm used to Java (in Eclipse), which has its import
statements, but I'm writing a DLL in Visual C# (in Visual Studio 2012), which has its using
statements. I'm used to Eclipse's default keyboard shortcut Ctrl-Shift-O, which updates the list of import statements in the Java perspective, deleting unused imports and adding necessary imports found on the build path.
Is there an equivalent operation in VS2012 with VC#? I've just been selecting the word, opening the Office-style popup, and added the "using" statement that way, but it conflicts with my workflow (read: I'm lazy and I like having my shortcuts).
© Stack Overflow or respective owner