C# language feature:
applies to
benefit
how to use
, enclosed in () followed by method assignment.example:
void Deconstruction_Example()
{
(string first, string last) = GetPersonsName(); // see Tuples for definition of GetPersonName
}