Extract Method refactoring
Refactor | Extract/Introduce | Extract Method...
Ctrl0R,0M
This refactoring allows you to create a new method or a local function based on the selected code fragment. JetBrains Rider analyzes the selected statements and detects variables that can be converted into method parameters or represent its return value.
Consider the following example. The method PrintReversed()
actually does two things: it reverses the string and prints it. We can select the reversing logic, which is all statements except Console.WriteLine(reversed);
, and use this refactoring to move that logic to a new PrintReversed()
method.
Before refactoring
static void PrintReversed(string input){ var chars = input.ToCharArray(); Array.Reverse(chars); var reversed = new string(chars); Console.WriteLine(reversed);}
After refactoring
static void PrintReversed(string input){ var reversed = ReverseStr(input); Console.WriteLine(reversed);}private static string ReverseStr(string input){ var chars = input.ToCharArray(); Array.Reverse(chars); var reversed = new string(chars); return reversed;}
tip
The reverse functionality is available with the Inline Method refactoring refactoring.
In the editor, select one or more statements that you want to convert into a local function.
Do one of the following:
Press Ctrl0R,0M.
Press AltEnter and choose Extract Method.
Press CtrlShift0R and then choose Extract Method.
In the popup that opens, select Extract Local Function.
A dialog appears where you can configure the extracted local function:
Type a name for the new local function in the Name field.
Select one of expressions that JetBrains Rider detected as possible return values in the Return list. There may be other expressions detected as possible return values. They are listed as
out
parameters.Include or exclude parameters using the corresponding checkboxes in the Parameters area. If you exclude a parameter from the list, the local variable with the same name and type will be created if necessary.
To change the order of the parameters, select a parameter in the list and use the Move Up and Move Up buttons.
Select the Make static and/or Make virtual to add the corresponding modifiers to the method.
If necessary, change the visibility of the method in the Visibility list.
Check the signature and body of the resulting local function in the Preview field.
To apply the refactoring, click Next.
If no conflicts are found, JetBrains Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.
tip
Right after the refactoring has been completed, all changes that it makes anywhere, including other files, are registered as a single operation. So you can use the Undo action Ctrl0Z to roll back all these changes with a single keystroke.
In the editor, select one or more statements that you want to convert into a local function.
Do one of the following:
Press Ctrl0R,0M.
Press AltEnter and choose Extract Method.
Press CtrlShift0R and then choose Extract Method.
In the popup that opens, select Extract Local Function.
In the dialog that opens, specify where to place the local function inside the current method, and click Next.
A dialog appears where you can configure the extracted local function:
Type a name for the new local function in the Name field.
Select one of expressions that JetBrains Rider detected as possible return values in the Return list. There may be other expressions detected as possible return values. They are listed as
out
parameters.Include or exclude parameters using the corresponding checkboxes in the Parameters area. If you exclude a parameter from the list, the local variable with the same name and type will be created if necessary.
To change the order of the parameters, select a parameter in the list and use the Move Up and Move Up buttons.
Check the signature and body of the resulting local function in the Preview field.
To apply the refactoring, click Next.
If no conflicts are found, JetBrains Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.
tip
Right after the refactoring has been completed, all changes that it makes anywhere, including other files, are registered as a single operation. So you can use the Undo action Ctrl0Z to roll back all these changes with a single keystroke.