This option controls whether deconstruction should be preferred when introducing multiple variables from a tuple or a type with a Deconstruct method.
var (x, y) = GetPoint();
var point = GetPoint(); var x = point.x; var y = point.y;