ReSharper 2023.3 Help

Naming style

ReSharper helps you define, control, and apply naming style for symbols in your code. Naming style is implemented as a set of rules, each of which targets specific identifiers with the set of constraints (for example, a rule can target static private readonly fields) . Each rule can have one or more associated styles that define suffixes, prefixes, capitalization of compound words, and so on.

These rules are taken into account when ReSharper produces new code with code completion and code generation features, applies code templates and performs refactorings. ReSharper also helps you detect and fix violations of naming rules. If necessary, the automatic checkup of naming rules can be configured or disabled.

Configure naming rules

Out of the box, ReSharper provides a naming rule for each type of identifier. These rules are based on the Microsoft Naming Guidelines, .NET Platform Coding Style, and various best practices.

If your personal preferences or company standards differ from ReSharper defaults, you can configure the naming style in a flexible way: for each type of identifier you can choose capitalization rules, prefixes and suffixes, variations for different access rights, abbreviations to preserve, and more.

Your naming style preferences are saved using the mechanism of layer-based settings. Among other things, this mechanism allows you to maintain different preferences for different solutions as well as to keep these preferences under a VCS and automatically share them with your team members.

Modify a default naming rule

  1. Do one of the following:

    • Press Alt+Enter on a highlighted symbol with inconsistent naming, then choose Inspection 'Inconsistent Naming' | Change settings for naming rule '[rule name]'.

    • From the main menu, choose ReSharper | Options | Code Editing | [Language] | Naming Style, select the desired rule, and click Edit ThemedIcon.EditorOptionsPage.Screen.(Gray).png or just double-click it.

  2. In the Edit Rule Settings dialog that opens, check the existing style for the rule.

  3. If the existing style is acceptable, but you would like to allow other styles for this rule, click Add ThemedIcon.AddedParameter.Screen.(Gray).png. When there are several styles for a single rule, ReSharper does not detect code style violation if a corresponding symbol name matches at least one of these styles. Otherwise, ReSharper detects a code style violation and suggests renaming the symbol according to the default style (the first style in the list). To change the default style, use Move Up ThemedIcon.Up.Screen.(Gray).png and Move Down ThemedIcon.Down.Screen.(Gray).png buttons.

  4. To configure a specific style, select it in the list and configure prefix, suffix, and choose a naming style.

  5. To remove an unnecessary style, select it in the list and click Remove ThemedIcon.Delete.Screen.(Gray).png.

  6. If necessary, you can disable detection of code style violations associated with this rule, allowing ReSharper to detect other code style violations. To do so, clear the Enable inspections checkbox.

  7. Click Set to close the Edit Rule Settings dialog.

  8. Click Save in the dialog to apply the modifications and let ReSharper choose where to save them, or save the modifications to a specific settings layer by choosing this layer from the Save To selector. For more information, see manage and share resharper settings.

If the existing rules do not cover all aspects of your naming convention, you can create custom rules. For example, you may want that enums had upper camel case capitalization and the 'E' prefix.

Create a custom naming rule

  1. From the main menu, choose ReSharper | Options | Code Editing | C# | Naming Style and click Advanced settings.

  2. In the Advanced Naming Settings dialog that opens, click Add ThemedIcon.AddedParameter.Screen.(Gray).png to create a custom naming rule.

    ReSharper: naming style options. advanced settings
  3. In the Edit Extended Naming Rule dialog that appears, configure the new rule: specify a name for the new rule in the Rule Description field, select the target identifiers in the Affected entities area, use Access rights and Static/non-static areas to further constrain the scope of the rule.

  4. In the Naming style section, configure one or more styles for the rule as described in the procedure above.

    ReSharper: Naming style options. Edit extended naming rule
  5. Click OK to close the Edit Extended Naming Rule dialog, and then again OK to close the Advanced Naming Settings dialog.

  6. Click Save in the Options dialog to apply the modifications and let ReSharper choose where to save them, or save the modifications to a specific settings layer by choosing this layer from the Save To selector. For more information, see manage and share resharper settings.

Use EditorConfig to configure naming rules

If you use EditorConfig to maintain code styles for your project, you can also configure naming rules from .editorconfig files.

To configure naming rules from EditorConfig, you have to select the Read settings from editorconfig and project settings checkbox on the Code Inspection | Settings page of ReSharper options (Alt+R, O) .

You can also export naming styles that you already configured in ReSharper settings to an .editorconfig file.

Naming style settings in .editorconfig files are configured using the properties of .NET naming conventions for EditorConfig: dotnet_naming_rule.*, dotnet_naming_style.*, dotnet_naming_symbols.* — will work if the specified kinds of symbols can be matched by kinds of symbols available in ReSharper naming settings.

In addition to that, ReSharper can use a number of custom properties to support cases not covered by .NET naming conventions. These properties mainly appear in .editorconfig files when you export ReSharper naming settings.

  • import_to_resharper

    This suffix allows specifying whether a specific property should be ignored by ReSharper (true or false).

    When ReSharper exports its settings to editorconfig, it could also write as_predefined — don't change that manually. Example: dotnet_naming_rule.protected_rule_rule.import_to_resharper = false

  • resharper_description

    Allows specifying a rule description for tooltips. Example: dotnet_naming_rule.protected_rule_rule.resharper_description = Something

  • resharper_guid

    ReSharper can use this property when exporting, do not change it manually. Example: dotnet_naming_rule.protected_rule_rule.resharper_guid = eb5720f3-bc0a-442d-9f3c-8dc32b7c5c12

  • resharper_style

    Allows specifying a list of possible styles, which can extend the list of .NET naming styles. Each style could be "style" or "prefix + style + suffix" or "prefix + style" or "style + suffix".

    A style can be one of AaBb, AaBb_AaBb, AaBb_aaBb, aaBb, aaBb_AaBb, aaBb_aaBb, AA_BB, aa_bb, Aa_bb

    You can add :do_not_check at the end of the list to disable inspections.

    Example: dotnet_naming_rule.protected_rule_rule.resharper_style = AA_BB, aa_bb, I+AaBb, aaBb_AaBb, AaBb+Local

  • resharper_applicable_kinds

    Identifier kind to apply the naming rule to: namespace, type, test_type, class, pure_class, record, struct, interface, delegate, enum, type_member, test_member, method, async_method, extension_method, property, event, any_field, field (simple field, not readonly or constant), readonly_field, constant_field, unity_serialised_field (if the Unity Support plugin is installed), enum_member local, local_variable, catch_variable, local_constant, parameter, lambda_parameter, label, type_parameter, local_function

    Example: dotnet_naming_symbols.protected_rule_symbols.resharper_applicable_kinds = pure_class

  • resharper_required_modifiers

    static, instance (none, one of these or both). Example: dotnet_naming_symbols.protected_rule_symbols.resharper_required_modifiers = static, instance

  • resharper_csharp_naming_rule

    Use the same value as for resharper_style, but this setting could only be used to specify one of predefined rules: types_and_namespaces, interfaces, type_parameters, method, property, event, locals, local_constants, parameters, public_fields, private_instance_fields, private_static_fields, constants, private_constants, static_readonly, private_static_readonly, enum_member, local_functions, other

    Example: resharper_csharp_naming_rule.private_instance_fields = I+AaBb_AaBb,_+aaBb:do_not_check

As EditorConfig convention suggests, ReSharper will apply naming rules defined in files named .editorconfig in the directory of the current file and in all its parent directories until it reaches the root filepath or finds an EditorConfig file with root=true. File masks specified in .editorconfig files, for example *Test.cs are also taken into account.

Ignore uppercase abbreviations that conflict with a CamelCase naming style

Sometimes you may want to use uppercase abbreviations, acronyms, or initialisms (such as MS for MicroSoft) in CamelCase symbol names. By default, ReSharper detects that as inconsistent camel casing because several uppercase letters go in a row:

ReSharper: Naming style. abbreviations

To avoid that, you can configure the list of abbreviations to be ignored by the naming style inspection.

It is important to note that uppercase abbreviations should not contradict the naming style defined for specific kind of identifier.

For example, if you added MS to the ignored abbreviations, MSBuilder will be an acceptable name for identifiers with the UpperCamelCase style, but not for identifiers with lowerCamelCase or all_lower naming styles.

Similarly, myMSBuilder will be OK for lowerCamelCase - but not for UpperCamelCase-styled identifiers.

Add an abbreviation to the ignore list

  1. In the editor, place the caret at a highlighted symbol that uses the abbreviation in its name.

  2. Press Alt+Enter or click the action indicator to the left of the caret to open the action list.

  3. Choose Inspection 'Inconsistent Naming' | Add [abbreviation] to the abbreviations list

    Adding an abbreviation to the ignore list
  4. if necessary, you can select where to save this preference. For more information, refer to Manage and share ReSharper settings

If you have many abbreviations that could be used in symbol names, you can edit the list of ignored abbreviations.

Edit the list of ignored abbreviations

  1. From the main menu, choose ReSharper | Options | Code Editing | C# | Naming Style and click Advanced settings.

  2. Add abbreviations that ReSharper should ignore to the Abbreviations field using spaces as delimiters.

  3. Click OK to close the Advanced Naming Settings dialog.

  4. Click Save in the Options dialog to apply the modifications and let ReSharper choose where to save them, or save the modifications to a specific settings layer by choosing this layer from the Save To selector. For more information, see manage and share resharper settings.

Detect and fix violations of naming rules

ReSharper uses the 'Inconsistent Naming' code inspection to detect violations of naming rules in your code. By default, this inspection is always applied during the design-time code inspection and highlights the detected violations as warnings in the editor. For example, according to the default style, names of interfaces should have 'I' prefix. If an interface name does not match this rule, ReSharper highlights this name and informs you about the problem when you hover over it:

ReSharper: Highlighted violation of the naming style

If you want to find naming style violations beyond the current file, you can run the 'Inconsistent Naming' inspection in the project or in the entire solution.

Find naming style violations in a specific scope

  1. In the editor, place the caret at a highlighted symbol that has inconsistent naming.

  2. Press Alt+Enter or click the action indicator to the left of the caret to open the action list.

  3. Choose Inspection 'Inconsistent Naming' | Find similar issues in file and then select the desired scope.

    ReSharper: Using action list to find naming style issues
  4. All found naming style violations will be displayed in the Inspection Results window.

    ReSharper: Naming style violations in solution
  5. You can double-click the detected problems to navigate to the code of the corresponding symbols.

For most of the naming style violations highlighted in the editor, ReSharper suggests a quick-fix with a conforming name. You can press Alt+Enter and choose Rename to [conforming name] in the action list.

Quick-fix for naming style violation

Automatic correction of naming style violations can also be performed in the current file, project or solution using the fix in scope feature.

However, if the symbol with the calculated conforming name already exists in the same namespace, the quick-fix is not suggested. You can fix the naming of such symbol with the Rename refactoring.

Configure and disable automatic checkup of naming rules

If you do not want ReSharper to check naming style in the existing codebase, you can either disable the code inspection that is responsible for it, or disable the automatic checkup of a specific rule. However, even if the automatic checkup is disabled, all naming rules will be respected when ReSharper helps you produce new code with code completion, generation, refactorings, and templates.

Disable automatic checkup of naming style

  • Press Alt+Enter on a highlighted symbol with inconsistent naming, then choose Inspection 'Inconsistent Naming' | Configure inspection severity | Do not show.

  • On the Code Inspection | Inspection Severity page of ReSharper options (Alt+R, O) , start typing 'Inconsistent Naming', and then clear the checkbox next to the corresponding code inspection.

  • If you use .editorconfig in your solution, you can disable the 'Inconsistent Naming' inspection in the specific scope:

    resharper_inconsistent_naming_highlighting=none

Disable automatic checkup of a specific naming rule

  1. Do one of the following:

    • Press Alt+Enter on a highlighted symbol with inconsistent naming, then choose Inspection 'Inconsistent Naming' | Change settings for naming rule '[rule name]'.

    • From the main menu, choose ReSharper | Options | Code Editing | [Language] | Naming Style, select the desired rule, and click Edit ThemedIcon.EditorOptionsPage.Screen.(Gray).png or just double-click it.

  2. In the Edit Rule Settings dialog that opens, clear the Enable inspections checkbox.

  3. Click Set to close the Edit Rule Settings dialog.

  4. Click Save in the dialog to apply the modifications and let ReSharper choose where to save them, or save the modifications to a specific settings layer by choosing this layer from the Save To selector. For more information, see manage and share resharper settings.

Use C# naming rules from existing code

If you check out a solution from a public repo or temporarily join a team where a different code naming style is established, you will probably want to follow naming rules in this solution but at the same time not to change your globally configured naming rules.

ReSharper will handle such situations automatically — when you open a new solution where symbol naming differs from your global settings, it will detect the naming rules that diverge from your global settings, modify these rules accordingly, and then save the modified rules to the 'Solution personal' settings layer (.sln.DotSettings.user file next to the solution).

If this happens when you open a new solution, ReSharper will show a notification in the editor:

ReSharper: Naming rules auto-detection notification

You can click Configure to open the corresponding settings page (Code Editing | C# | Naming Style). On this settings page, the rules that were changed based on the solution code are highlighted with yellow. If you want to use ReSharper's default naming rules or configure naming style in your own way, clear the Use auto-detected rules checkbox.

ReSharper highlighting automatically-set naming rules with yellow

Applicability in different languages

This feature is supported in the following languages and technologies:

Language: C#

Language: VB.NET

Language: C++

Language: HTML

Language: ASP.NET

Language: Razor

Language: JavaScript

Language: TypeScript

Language: CSS

Language: XML

Language: XAML

Language: Resx

Language: Build Scripts

Language: Protobuf

Language: JSON

Feature is available in C#

Feature is available in Visual Basic

Feature is available in C++

Feature is not available in HTML

Feature is available in ASP.NET

Feature is not available in Razor

Feature is available in JavaScript

Feature is available in TypeScript

Feature is not available in CSS

Feature is not available in XML

Feature is available in XAML

Feature is not available in Resource files

Feature is not available in build script files

Feature is not available in Protobuf

Feature is not available in JSON

The instructions and examples given here address the use of the feature in C#. For more information about other languages, refer to corresponding topics in the ReSharper by language section.

Last modified: 18 March 2024