Tuple es una estructura de datos que le brinda la forma más fácil de representar un conjunto de datos que tiene múltiples valores que pueden o no estar relacionados entre sí. La propiedad Item3 se usa para obtener el tercer elemento de la tupla dada. No se aplica a 1-Tuple, 2-Tuple, pero se aplica a todas las demás tuplas restantes.
Sintaxis:
public T3 Item3 { get; }
Aquí, T3 es el valor del tercer componente del objeto Tuple<> actual. Esta tupla<> puede ser de 3 tuplas, de 4 tuplas, de 5 tuplas, de 6 tuplas, de 7 tuplas o de 8 tuplas.
Ejemplo: en el siguiente código, puede ver que estamos accediendo al tercer elemento de cada tupla.
// C# program to illustrate how to get // the third element of the tuple using System; class GFG { // Main method static public void Main() { // Taking 3-tuple var st3 = Tuple.Create("Soniya", 30, "CSE"); Console.WriteLine("Student-3 Branch: " + st3.Item3); // Taking 4-tuple var st4 = Tuple.Create("Rohan", 29, "EC", 2015); Console.WriteLine("Student-4 Branch: " + st4.Item3); // Taking 5-tuple var st5 = Tuple.Create("Siya", 22, "EEE", 2017, "20-Mar-1993"); Console.WriteLine("Student-5 Branch: " + st5.Item3); // Taking 6-tuple var st6 = Tuple.Create("Riya", 24, "ME", 2015, "30-May-2015", 230134832); Console.WriteLine("Student-6 Branch: " + st6.Item3); // Taking 7-tuple var st7 = Tuple.Create("Rohit", 21, "IT", 2017, "21-Apr-1998", 384749829, 20000); Console.WriteLine("Student-7 Branch: " + st7.Item3); // Taking 8-tuple var st8 = Tuple.Create("Manita", 24, "CSE", 2016, "03-Aug-1991", 235678909, 34000, "C#"); Console.WriteLine("Student-8 Branch: " + st8.Item3); } }
Student-3 Branch: CSE Student-4 Branch: EC Student-5 Branch: EEE Student-6 Branch: ME Student-7 Branch: IT Student-8 Branch: CSE
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA