In some languages (such as PHP, Haskell, or Scala), you can assign multiple variables from tuples in a way that resembles the following pseudocode:
list(stri
You can technically do this with a single statement, rather than two statements, using the following syntax, although the character count is almost identical.
string firstValue = tupleWithTwoValues.Item1 , secondValue = tupleWithTwoValues.Item2;