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
Yes it is possible in C#. You'll need to install the package Value.Tuple in your project. You can do like this
List>() lstTuple = GetYourTupleValue(); foreach(var item in lstTuple) { (string Value1, string Value2 ) = item; } Console.WriteLine(item.Value1);