void MagicalFunction(MagicalType magic) { ... magic.Poof("something"); ... var foo = magic.GetFoo(); ... }
Pressing the hotkey on the magic variable will be guided by the definition of the MagicalType type.
Pressing the foo hotkey will switch to the definition of the type foo , which is not directly visible due to the type input.
The Resharper plugin has this feature (called Go To Type of Symbol ), but is there a built-in alternative or free extension that does this?
c # plugins visual-studio-2015 hotkeys
Jbeurer
source share