This option controls whether the range operator should be preferred over calling Skip/Take or similar sequence slicing methods.
var x = list[1..3];
var x = list.Skip(1).Take(3);