Editorconfig Guide

Generate your .editorconfig file with ease.

Prefer expression bodied lambdas

csharp-style-expression-bodied-lambdas

Default value:

true

Possible values:

  • true
  • false
  • when_on_single_line

Examples

true
Func<int, int> square =
  x => x * x;
false
Func<int, int> square =
  x => { return x * x; };
when_on_single_line
Func<int, int> square =
  x => x * x;