How to create 3-Tuple or Triple Tuple in C#?
In C#, a 3-tuple is a tuple that contains three elements and it is also known as triple. You can create a 3-tuple using two different ways:
Using Tuple<T1,T2,T3>(T1, T2, T3) Constructor
You can create 3-tuple using Tuple<T1, T2,T3>(T1, T2, T3) constructor. It initializes a new instance of the Tuple<T1, T2, T3> class. But when you create a tuple using this constructor then you have to specify the type of the element stored in the tuple.
Syntax:
public Tuple (T1 item1, T2 item2, T3 item3);
Parameters:
- item1: It is the value of the first tuple component.
- item2: It is the value of the second tuple component.
- item3: It is the value of the third tuple component.
Example:
// C# program to create 3-tuple // using the tuple constructor using System; public class GFG { // Main method static public void Main() { // Creating tuple with three elements // Using Tuple<T1, T2, T3>(T1, T2, T3) constructor Tuple< string , int , char > My_Tuple = new Tuple< string , int , char >( "GeeksforGeeks" , 10, 'C#' ); Console.WriteLine( "Element 1: " + My_Tuple.Item1); Console.WriteLine( "Element 2: " + My_Tuple.Item2); Console.WriteLine( "Element 3: " + My_Tuple.Item3); } } |
Element 1: GeeksforGeeks Element 2: 10 Element 3: C#
Using Create Method
You can also create 3-tuple with the help of Create method. When you use this method then there is no need to specify the type of the elements stored in the tuple.
Syntax:
public static Tuple<T1,T2,T3> Create<T1, T2, T3> (T1 item1, T2 item2, T3 item3);
Type Parameters:
- T1: It is the type of the first tuple component.
- T2: It is the type of the second tuple component.
- T3: It is the type of the third tuple component.
Parameters:
- item1: It is the value of the first tuple component.
- item2: It is the value of the second tuple component.
- item3: It is the value of the third tuple component.
Return Type: This method returns 3-tuple whose value is item1, item2, and item3.
Example:
// C# program to create 3-tuple // using create method using System; public class GFG { // Main method static public void Main() { // Creating tuple with three // elements using Create method var My_Tuple = Tuple.Create( "Geeks" , 20, 'f' ); Console.WriteLine( "Element 1: " + My_Tuple.Item1); Console.WriteLine( "Element 2: " + My_Tuple.Item2); Console.WriteLine( "Element 3: " + My_Tuple.Item3); } } |
Element 1: Geeks Element 2: 20 Element 3: f
References:
- https://docs.microsoft.com/en-us/dotnet/api/system.tuple-3.-ctor?view=netframework-4.8
- https://docs.microsoft.com/en-us/dotnet/api/system.tuple.create?view=netframework-4.8#System_Tuple_Create__3___0___1___2_
Recommended Posts:
- How to create 1-Tuple or Singleton Tuple in C#?
- How to create 2-tuple or pair tuple in C#?
- How to create 6-Tuple in C#?
- How to create 8-Tuple or Octuple in C#?
- How to create 7-Tuple or Septuple in C#?
- How to create 5-Tuple or quintuple in C#?
- How to create 4-Tuple or quadruple in C#?
- C# | Tuple
- C# | How to get Fifth Element of the Tuple?
- C# | Tuple Class
- C# | How to get Third Element of the Tuple?
- C# | Tuple<T1> Class
- C# | How to get First Element of the Tuple?
- C# | Tuple<T1,T2> Class
- C# | Tuple<T1,T2,T3,T4,T5> Class
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.