This option controls whether tuple fields should be accessed via their declared names rather than the default Item1, Item2, ... names.
var tuple = (
first: 1,
second: 2
);
var first = tuple.first;var tuple = (
first: 1,
second: 2
);
var first = tuple.Item1;