|
|
|
|
|
by olavk
4153 days ago
|
|
The ability to write (2, "hello") instead of Tuple.Create(2, "Hello"). But more importantly, syntax for deconstructing tuples will make tuples convenient for returning multiple values from a method. Eg.:
(var x, var y) = getPoint();
as shown in the aticle. |
|