This option controls whether tuple swapping should be preferred over using a temporary variable to swap two values.
(x, y) = (y, x);
var temp = x; x = y; y = temp;