Visual Studio 2010: Keyboard Shortcut to "Override Method" in C#?

35,372

Solution 1

If you type overridespace, or just ovtabspace you will get this list. Select the one you want tab and it will generate the full override signature and place you in the body (the caret will be placed immediately before the base.blah(...) call it generates).

Solution 2

Generally intellisense will automatically list after you've typed (or used intellisense to complete) override.

Typing a space after the "e" of override will get the list again.

Share:
35,372
thenonhacker
Author by

thenonhacker

Updated on June 03, 2020

Comments

  • thenonhacker
    thenonhacker almost 4 years

    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.

  • thenonhacker
    thenonhacker almost 13 years
    I wish there was a direct shortcut like in IDEA, but this will do. Thanks!