How to create 6-Tuple in C#?


The Tuple<T1,T2,T3,T4,T5,T6> class represents a 6-tuple. A tuple is a data structure that has a sequence of elements.

It has six properties −

  • Item1 − Get the value of the current Tuple<T1, T2, T3, T4, T5, T6> object's first component.

  • Item2 − Get the value of the current Tuple<T1, T2, T3, T4, T5, T6> object's second component.

  • Item3 − Get the value of the current Tuple<T1, T2, T3, T4, T5, T6> object's third component.

  • Item4 − Get the value of the current Tuple<T1, T2, T3, T4, T5, T6> object's fourth component.

  • Item5 − Get the value of the current Tuple<T1, T2, T3, T4, T5, T6> object's fifth component.

  • Item6 − Get the value of the current Tuple<T1, T2, T3, T4, T5, T6> object's sixth component.

Example

Let us now see an example to implement the 6-tuple in C# −

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<string,int,string,int,int,string> tuple = new Tuple<string,int,string,int,int,string>("jack", 150, "pete", 300, 600, "allan");
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      Console.WriteLine("Value (Item5)= " + tuple.Item5);
      Console.WriteLine("Value (Item6)= " + tuple.Item6);
      if (tuple.Item1 == "kevin") {
         Console.WriteLine("Exists: Tuple Item 1 = " +tuple.Item1);
      }
      if (tuple.Item2 == 250) {
         Console.WriteLine("Exists: Tuple Item 2 = " +tuple.Item2);
      }
      if (tuple.Item3 == "pete") {
         Console.WriteLine("Exists: Tuple Item 3 = " +tuple.Item3);
      }
      if (tuple.Item4 == 300) {
         Console.WriteLine("Exists: Tuple Item 4 = " +tuple.Item4);
      }
      if (tuple.Item5 == 400) {
         Console.WriteLine("Exists: Tuple Item 5 = " +tuple.Item5);
      }
      if (tuple.Item6 == "allan") {
         Console.WriteLine("Exists: Tuple Item 6 = " +tuple.Item6);
      }
   }
}

Output

This will produce the following output −

Value (Item1)= jack
Value (Item2)= 150
Value (Item3)= pete
Value (Item4)= 300
Value (Item5)= 600
Value (Item6)= allan
Exists: Tuple Item 3 = pete
Exists: Tuple Item 4 = 300
Exists: Tuple Item 6 = allan

Example

Let us now see another example to implement the 6-tuple in C# −

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<int,int,int,int,int,int> tuple = new Tuple<int,int,int,int,int,int>(100, 150, 200, 300, 600, 1000);
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      Console.WriteLine("Value (Item5)= " + tuple.Item5);
      Console.WriteLine("Value (Item6)= " + tuple.Item6);
      if (tuple.Item1 == 100) {
         Console.WriteLine("Exists: Tuple Item 1 = " +tuple.Item1);
      }
      if (tuple.Item2 == 250) {
         Console.WriteLine("Exists: Tuple Item 2 = " +tuple.Item2);
      }
      if (tuple.Item3 == 300) {
         Console.WriteLine("Exists: Tuple Item 3 = " +tuple.Item3);
      }
      if (tuple.Item4 == 300) {
         Console.WriteLine("Exists: Tuple Item 4 = " +tuple.Item4);
      }
      if (tuple.Item5 == 400) {
         Console.WriteLine("Exists: Tuple Item 5 = " +tuple.Item5);
      }
      if (tuple.Item6 == 500) {
         Console.WriteLine("Exists: Tuple Item 6 = " +tuple.Item6);
      }
   }
}

Output

This will produce the following output −

Value (Item1)= 100
Value (Item2)= 150
Value (Item3)= 200
Value (Item4)= 300
Value (Item5)= 600
Value (Item6)= 1000
Exists: Tuple Item 1 = 100
Exists: Tuple Item 4 = 300

Updated on: 12-Nov-2019

71 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements