Editorconfig Guide

Generate your .editorconfig file with ease.

Prefer expression bodied indexers

csharp-style-expression-bodied-indexers

Default value:

false

Possible values:

  • true
  • false
  • when_on_single_line

Examples

true
public int this[int index]
  => _values[index];
false
public int this[int index]
{
  get { return _values[index]; }
}
when_on_single_line
public int this[int index]
  => _values[index];