Is there a keyboard shortcut to view the meaning of a squiggly line in Visual Studio?
It'll be nice if I could view the meaning of a squiggly line witho开发者_JAVA百科ut doing a mouse hover.
Ctrl + K, Ctrl + I
- Edit.QuickInfo command.
It's Ctrl-. or Shift-Alt-F10 (View.ShowSmartTag).
I'm surprised that the question hasn't been answered for more than half a year. I've been using C# for a day and already have found it annoying to reach for the mouse every time to add a 'using' statement.
Not exactly the answer, but a helpful shortcut I usually use to go through errors without using the mouse is F8, which cycles through the Error list (errors, warnings, messages)
精彩评论