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:
using System;
class GFG {
static public void Main()
{
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:
using System;
class GFG {
static public void Main()
{
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:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
29 Nov, 2019
Like Article
Save Article