Skip to main content
A newer version of this page is available. .
All docs
V21.1

How to: Convert Properties into the Expression-Bodied Structure

  • 2 minutes to read

CodeRush can adjust the existing code to the expression body style. For example, in the Convert to Property with Backing Field refactoring.

declare-method

If you use this style in features that generate new members from scratch (for example, Declaration Providers, Declare Menu, and Code Template), the new code will automatically match the expression body style. The following screencast shows the applied expression body style to the Declare Method code provider:

declare-method

This example shows how to define the expression body style for properties and apply this style in code cleanup.

Follow the steps below:

  1. Specify settings for expression bodies.

    CodeRush uses the Visual Studio code style preferences and settings in the EditorConfig file for the expression body style in Visual Studio 2017 and later.

    disabled-code-style-settings

    To change the settings: open Visual Studio, choose Tools | Options | Text Editor | C# | Code Style | Expression preferences, and set required options for properties and accessors. In this example, set the expression body settings for properties and accessors to “When possible”. Set settings for other members to the “Never” value.

    vs-code-style

    To change the code style settings for expression bodies in Visual Studio 2015:

    Open the Editor | C# | Programming Style CodeRush options page and set the expression body settings for properties and accessors.

    expression-bodies-in-vs-2015

  2. Click Apply and OK to save these settings and close the programming style options page.

  3. Open the Editor | C# | Code Cleanup options page, select the “Apply expression body styles” rule, and enable the “Apply in Action” option for this rule.

    apply-expression-body-cleanup

    To apply this rule in code cleanup before a file is saved, enable the “Apply on Save” and “Apply Code Cleanup when saving a document” options for this rule.

  4. Click Apply and OK to save these settings and close the Code Cleanup options page.

  5. Copy the following code snippet and paste it to your project:

    namespace ConsoleApp
    {
        class Sample
        {
            public string propertyName;
    
            public string StringProperty
            {
                get
                {
                    return string.Empty;
                }
            }
    
            public string PropertyName
            {
                get
                {
                    return propertyName;
                }
    
                set
                {
                    propertyName = value;
                }
            }
        }
    }
    
  6. Run code cleanup to apply the expression body style.

    apply-expression-body-cleanup

Note

You can also use the Use Expression Body refactoring to convert a property, method, constructor, destructor, getter or setter into the expression-bodied structure.