JetBrains Rider 2023.3 Help

Introduce Field refactoring

This refactoring allows you to create a new field based on a selected expression, initialize it with the expression or from the constructor, and replace occurrences of the expression in the current type with references to the newly introduced field.

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

class ErrorHandler { public static void LogError(Exception e) { File.WriteAllText(@"c:\Error.txt", "Something has failed" + e); } public static void PrintError(Exception e) { Console.WriteLine("{0} : {1}", "Something has failed", e); } }
class ErrorHandler { private const string ErrorMessage = "Something has failed"; public static void LogError(Exception e) { File.WriteAllText(@"c:\Error.txt", ErrorMessage + e); } public static void PrintError(Exception e) { Console.WriteLine("{0} : {1}", ErrorMessage, e); } }

Introduce a field

  1. Select an expression in the editor.

  2. Do one of the following:

    • Press Ctrl+Alt+F.

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

    • Choose Refactor | Introduce Field from the main menu.

  3. The Introduce Field dialog opens. Specify the name for the new field and choose the access modifier. Optionally, specify whether to add static and readonly modifiers to the field.

  4. Choose how to initialize the field:

    • Current member: initializes the field in the current member (this option is only available if you chose to replace a single occurrence or if all occurrences are within the current member).

    • Field initializer: initializes the field in the declaration.

    • Constructor(s): initializes the field in the constructor or constructors of the containing class; if there are no constructors, a parameterless constructor is created to initialize the field.

    • Introduce constant: creates a constant field. This option is only available if the value of the selected expression corresponds to a built-in type.

  5. To apply the refactoring, click Next.

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

JetBrains Rider: Introduce Field refactoring
Last modified: 18 March 2024