In Visual Studio 2010, what is the keyboard shortcut to drop-down a list of C# virtual methods, and clicking them will generate an "override method" code?
In IntelliJ IDEA, that feature's shortcut is CTRL+Shift+O.
c++keyboard-shortcutsvisual-studio-2010
In Visual Studio 2010, what is the keyboard shortcut to drop-down a list of C# virtual methods, and clicking them will generate an "override method" code?
In IntelliJ IDEA, that feature's shortcut is CTRL+Shift+O.
Best Solution
If you type
override
space, or justov
tabspace you will get this list. Select the one you want tab and it will generate the fulloverride
signature and place you in the body (the caret will be placed immediately before thebase.blah(...)
call it generates).