Reputation: 404
So i have the following c# code snippet:
var accountModel = new AccountModel
{
Email = "[email protected]"
}
If you notice carefully you will notice i am missing " ; "
Here is what happens when i hover over the little red squiggly line:
My question is: How can i show the " ; expected " by using the keyboard and without hovering over the squiggly line with the cursor?
Thanks!
Upvotes: 12
Views: 1256
Reputation: 1633
Visual Studio 2015
Ctrl
+ K
, Ctrl
+ I
Hold down Windows Ctrl Key, keypress K and then keypress I
Upvotes: 21
Reputation: 16368
You can hit CTRL\ and the E to view the Error List window (default out-of-the-box keyboard config).
I don't think there's a way to show the tooltip without the mousepointer.
Upvotes: 2