How to convert a tuple into an array in C#?



Firstly, set a tuple −

Tuple<int, int> t = Tuple.Create(99,53);

Now, convert the tuple to an array −

int[] arr = new int[]{t.Item1, t.Item2};

The following is the code to convert a tuple into an array −

Example

 Live Demo

using System; using System.Linq; using System.Collections.Generic; namespace Demo {    public class Program {       public static void Main(string[] args) {          Tuple<int, int> t = Tuple.Create(99,53);          int[] arr = new int[]{t.Item1, t.Item2};          foreach (int val in arr) {             Console.WriteLine(val);          }       }    }   }

Output

99 53
Updated on: 2020-06-22T12:53:45+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements