This option controls whether indexers should be written using expression-bodied syntax.
public int this[int index] => _values[index];
public int this[int index] { get { return _values[index]; } }