Editorconfig Guide

Generate your .editorconfig file with ease.

Prefer expression bodied local functions

csharp-style-expression-bodied-local-functions

Default value:

false

Possible values:

  • true
  • false
  • when_on_single_line

Examples

true
int Square(int x) => x * x;
false
int Square(int x)
{
  return x * x;
}
when_on_single_line
int Square(int x) => x * x;