Editorconfig Guide
Generate your .editorconfig file with ease.
Prefer expression bodied methods
csharp-style-expression-bodied-methods
Default value:
false
Possible values:
true
false
when_on_single_line
Examples
true
public string GetName() => Name;
false
public string GetName() { return Name; }
when_on_single_line
public string GetName() => Name;