ReSharper 2021.1 Help

Rename refactoring

ReSharper | Refactor | Rename…
F2
ReSharper_Rename

This refactoring allows you to change name of any symbol or project in your solution. All references to and usages of the symbol will be updated automatically.

Use the refactoring for different C# entities

Here is the list of entities that you can rename with this refactoring:

  • Namespace
    You can also change its nesting level of the namespace. For example, you can rename namespace A.B.C to A.D.

  • Type
    If the renamed type is located in file with the same name, ReSharper renames the containing file, too.
    If the renamed type is a part of a hierarchy of types with similar names, for example class Foo : IFoo, you will be able to choose whether to rename the related types.

  • Method
    If the method is a part of inheritance/implementation hierarchy, the related methods are renamed as well.
    If the method has overloads, you will be able to choose whether to rename the overloads.

  • Field
    If the field is used in a property with a matching name, you will be able to choose whether to rename the property.

  • Property
    If the property has a backing field with a matching name, you will be able to rename the field as well.

  • Parameter
    If the method is a part of inheritance/implementation hierarchy, or has overloads with a parameter of the same name and type, you will be able to rename parameters in the related methods, too.

  • Local variable
    ReSharper renames local variables without showing the dialog:

    Renaming local variable

  • Event

  • Delegate

Invoke the refactoring with a command

  1. Select an entity in one of the following ways:

    • In the editor, set the caret at the name of an entity.

    • Select an entity in the Solution Explorer.

    • Select an entity in the File Structure window.

    • Select an entity in the Class View.

    • Select an entity in the Object Browser.

    • Select an entity in the type dependency diagram.

  2. Do one of the following:

    • Press F2.

    • Press Control+Shift+R and then choose Rename

    • Right-click and choose Refactor | Rename in the context menu.

    • Choose ReSharper | Refactor | Rename… in the main menu.

    The Rename dialog will open.

  3. Type a new name for the entity or use one of the suggested names.

    ReSharper: Rename refactoring
    ReSharper will suggest new names for the entity taking into account your naming style.

  4. Depending on the entity that you rename, select which related items should be renamed, for example, occurrences of the entity in comments and string literals.

  5. Click Next. If there are nothing related to the renamed entities, ReSharper applies the refactoring. Otherwise, the wizard displays additional steps:

    • If there are related entities with similar names, they are listed on the following step:

      ReSharper: Rename refactoring
      Select related entities that you want to rename along with the selected entity - you can accept the suggested names or specify new names in the New Name column.

    • If you have previously selected Search in comments and string literals and occurrences of the entity name is found, they are listed on the following step:

      ReSharper: Rename refactoring
      Select textual occurrences that you want ReSharper to rename.

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

Perform the refactoring in-place

You can rename an entity by modifying its declaration right in the editor and then applying a quick-fix to invoke the solution-wide refactoring.

As soon as you change entity's name at its declaration, a grey border appears around the name, notifying you that the refactoring is available. You can press Alt+Enter to find the refactoring in the action list:

ReSharper. Applying Rename refactoring inplace

Applicability in different languages

This feature is supported in the following languages and technologies:

Language: C#Language: VB.NETLanguage: C++Language: HTMLLanguage: ASP.NETLanguage: RazorLanguage: JavaScriptLanguage: TypeScriptLanguage: CSSLanguage: XMLLanguage: XAMLLanguage: ResxLanguage: Build ScriptsLanguage: ProtobufLanguage: JSON
Feature is available in C#Feature is available in Visual Basic .NETFeature is available in C++Feature is available in HTMLFeature is available in ASP.NETFeature is available in RazorFeature is available in JavaScriptFeature is available in TypeScriptFeature is available in CSSFeature is available in XMLFeature is available in XAMLFeature is available in Resource filesFeature is available in build script filesFeature is available in Protobuf Feature is not available in JSON

The instructions and examples given here address the use of the feature in C#. For details specific to other languages, see corresponding topics in the ReSharper by Language section.

Last modified: 08 March 2021