int a, b, n; ... (a, b) = (2, 3); // \'a\' is now 2 and \'b\' is now 3
This sort of thing would be really helpfull in C#. In this example \'a\' and
The closest structure I can think of is the Tuple class in version 4.0 of the framework.