ReSharper 2017.1 Help

Code Inspection: Use preferred body style (convert to property, indexer or event with preferred body style)

Starting from C# 6.0, you can declare function members using expression bodies, which look very similar to lambda expressions. You can use expression-bodied methods and properties to further simplify the syntax of simple implementations.

If you prefer to stick to either expression-bodied or block-bodied implementations for simple function members, ReSharper lets you configure your preferences separately for different kinds of members and maintain the consistency of your preferences throughout your codebase.

For example, let's select Expression body as the preferred style for properties, indexers, and events. Accordingly, ReSharper suggests the quick-fix To expression body if a simple property accessor is written with a block body:

Suboptimal codeAfter the quick-fix
public string Name { get { return _name ?? "Default name"; } set { _name = value; } }
public string Name { get => _name ?? "Default name"; set => _name = value; }
Last modified: 12 October 2017

See Also