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
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