Home > database >  Visual Studio: Change parameter order with hot keys
Visual Studio: Change parameter order with hot keys

Time:11-17

I don't want to change the signature of a method, I would like to change the order of parameters while using a method:

RandomVoidMethod(parameter3, parameter1, parameter2)

to

RandomVoidMethod(parameter1, parameter2, parameter3)

With resharper I am normally able to press

Ctrl Shift Alt Left / Ctrl Shift Alt Right

and let the parameter move to the letf/right. Is there something similar in VS Studio?

CodePudding user response:

Unfortunately no, this is not supported by Visual Studio out of the box. Only changing the signature (Ctrl R, Ctrl O) then clicking the move arrows in the dialog.

You can see the list of keyboard shortcuts here: https://docs.microsoft.com/en-us/visualstudio/ide/default-keyboard-shortcuts-in-visual-studio?view=vs-2022

  • Related