JetBrains Rider 2021.2 Help

Extract Method refactoring

This refactoring allows you to create a new method or a local function based on the selected code fragment. JetBrains Rider analyses the selected statements and detects variables that can be converted into method parameters or represent its return value.

Consider the following example:

static void PrintReversed(string input) { var chars = input.ToCharArray(); Array.Reverse(chars); var reversed = new string(chars); Console.WriteLine(reversed); }
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; }

Extract a method from selected statements

  1. In the editor, select one or more statements that you want to convert into a method.

  2. Do one of the following:

    • Press Ctrl+Alt+M.

    • Press Ctrl+Alt+Shift+T and then choose Extract Method

    • Choose Refactor | Extract Method in the main menu.

  3. Choose how to extract the selected statements: as a method or as a local function:

    JetBrains Rider. Extract Method refactoring: choosing between method and local function
  4. If you choose to create a local function, specify where to place the local function inside the current function, and click Next.

  5. Type a name for the new function in the Name field.

  6. Select one of expressions that JetBrains Rider detected as possible function return values in the Return list. There may be other expressions detected as possible return values. They are listed as out parameters.

  7. Include or exclude parameters using the corresponding check boxes in the Parameters area. If you exclude a parameter from the list, the local variable with the same name and type will be created in the method, if necessary.

  8. To change order of parameters, select parameters in the list and use Move Up and Move Up buttons below the parameters list.

  9. If you choose to create a method, select the Make static and/or Make virtual to add the corresponding modifiers to the method.

  10. If you choose to create a method, you can also specify access rights in the Access rights list.

  11. Check the resulted method signature and body in the Preview field.

  12. To apply the refactoring, click Next.

  13. If no conflicts are found, JetBrains Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.

JetBrains Rider. Extract Method refactoring
Last modified: 08 March 2021