JetBrains Rider 2023.3 Help

Introduce Variable refactoring

This refactoring allows you to create a new local variable or constant based on a selected expression, initialize it with the expression, and finally replace all occurrences of the expression in the method with references to the newly introduced variable.

In the example below, we use this refactoring to replace two occurrences of the same string with a variable:

static void LogError(Exception ex) { Console.WriteLine("Something has failed..."); File.WriteAllText(@"c:\Error.txt", "Something has failed..." + ex); }
static void LogError(Exception ex) { var message = "Something has failed..."; Console.WriteLine(message); File.WriteAllText(@"c:\Error.txt", message + ex); }

Replace one or more occurrences of an expression with a variable

  1. Select an expression in the editor.

  2. Do one of the following:

    • Press Ctrl+Alt+V.

    • Press Ctrl+Alt+Shift+T and then choose Introduce Variable.

    • Choose Refactor | Introduce Variable from the main menu.

  3. If more than one occurrence of the selected expression is found, JetBrains Rider displays the drop-down menu where you can choose whether to apply the refactoring to all occurrences or only to the current one.

  4. JetBrains Rider adds the new local variable and suggests choosing its type and name. You can choose one of the suggestions or type your own values. Press Tab or Enter to move to the next input position. Shift+Tab to return to the previous input position.

Last modified: 18 March 2024