This option controls whether the index-from-end operator should be preferred over calling ElementAt or indexing from the end manually.
var x = list[0];
var x = list.ElementAt(0);