Open In App

C# | Tuple Class

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

In C#, Tuple class is used to provide static methods for creating tuples and this class defined under System namespace. This class itself does not represent a tuple, but it provides static methods that are used to create an instance of the tuple type. Or in other words, the Tuple class provides helper methods that are used to instantiate tuple objects without having to explicitly specify the type of each tuple component. In tuple, you can only store elements from one to eight, if you try to store elements greater than eight without nested tuple, then the compiler will give an error.

Generally, tuples are used:

  • To represent multiple data into a single data set.
  • To create, manipulate, and access data set.
  • To return multiple values from a method without using out parameters.
  • To pass multiple values to a method with the help of single parameters.

Note: You can also, create a tuple with the help of the constructors which are provided by tuple classes, but in constructors, you have to specify the type of the elements present in the tuple as shown in the below example:

Example:




// C# program to create tuple 
// using tuple constructor.
using System;
  
class GFG {
  
    // Main method
    static public void Main()
    {
  
        // Creating tuple with seven elements
        // Using Tuple<T1, T2, T3, T4, T5, T6, 
        // T7>(T1, T2, T3, T4, T5, T6, T7) constructor
        Tuple<int, int, int, int, int, int, int> My_Tuple = new Tuple<int
               int, int, int, int, int, int>(22, 334, 54, 65, 76, 87, 98);
  
        Console.WriteLine("Element 1: " + My_Tuple.Item1);
        Console.WriteLine("Element 2: " + My_Tuple.Item2);
        Console.WriteLine("Element 3: " + My_Tuple.Item3);
        Console.WriteLine("Element 4: " + My_Tuple.Item4);
        Console.WriteLine("Element 5: " + My_Tuple.Item5);
        Console.WriteLine("Element 6: " + My_Tuple.Item6);
        Console.WriteLine("Element 7: " + My_Tuple.Item7);
    }
}


Output:

Element 1: 22
Element 2: 334
Element 3: 54
Element 4: 65
Element 5: 76
Element 6: 87
Element 7: 98

Methods

Method Description
Create <T1>(T1) Creates a new 1-tuple, or singleton.
Create <T1, T2>(T1, T2) Creates a new 2-tuple, or pair.
Create <T1, T2, T3>(T1, T2, T3) Creates a new 3-tuple, or triple.
Create <T1, T2, T3, T4>(T1, T2, T3, T4) Creates a new 4-tuple, or quadruple.
Create <T1, T2, T3, T4, T5>(T1, T2, T3, T4, T5) Creates a new 5-tuple, or quintuple.
Create <T1, T2, T3, T4, T5, T6>(T1, T2, T3, T4, T5, T6) Creates a new 6-tuple, or sextuple.
Create <T1, T2, T3, T4, T5, T6, T7>(T1, T2, T3, T4, T5, T6, T7) Creates a new 7-tuple, or septuple.
Create <T1, T2, T3, T4, T5, T6, T7, TRest>(T1, T2, T3, T4, T5, T6, T7, T8) Creates a new 8-tuple, or octuple.

Example:




// C# program to create 3-tuple 
// using create method
using System;
  
class GFG {
  
    // Main method
    static public void Main()
    {
  
        // Creating tuple with three elements
        // Using Create method
        var My_Tuple = Tuple.Create("Geeks", 2323, 'g');
  
        Console.WriteLine("Element 1: " + My_Tuple.Item1);
        Console.WriteLine("Element 2: " + My_Tuple.Item2);
        Console.WriteLine("Element 3: " + My_Tuple.Item3);
    }
}


Output:

Element 1: Geeks
Element 2: 2323
Element 3: g

Reference:



Last Updated : 29 Nov, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads