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

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 22-Jun-2020

611 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements