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 Item7 se usa para obtener el séptimo elemento de la tupla dada. No se aplica a 1-Tupla, 2-Tupla, 3-Tupla, 4-Tupla, 5-Tupla y 6-tupla, pero se aplica a todas las demás tuplas restantes.
Sintaxis:
public T7 Item7 { get; }
Aquí, T7 es el valor del séptimo componente del objeto Tuple<> actual. Este Tuple<> puede ser de 7 tuplas o de 8 tuplas.
Ejemplo: en el siguiente código, puede ver que estamos accediendo al séptimo elemento de cada tupla.
// C# program to illustrate how to get // the seventh element of the tuple using System; class GFG { // Main method static public void Main() { // Taking 7-tuple var st7 = Tuple.Create("Rohit", 21, "IT", 2017, "21-Apr-1994", 384749829, 1); Console.WriteLine("Student-7 Position.: " + st7.Item7); // Taking 8-tuple var st8 = Tuple.Create("Manita", 24, "CSE", 2013, "03-Aug-1991", 235678909, 2, "C#"); Console.WriteLine("Student-8 Position: " + st8.Item7); } }
Student-7 Position.: 1 Student-8 Position: 2
Nota: También puede obtener el tipo del Séptimo componente de la tupla usando el método GetType() o usando el método Type.GetGenericArguments .
Ejemplo:
// C# program to illustrate how to get the // type of the Seventh element of the tuple using System; class GFG{ // Main method static public void Main (){ // Taking 7-tuple var stu7 = Tuple.Create("Riya", 24, "CSE", 2015, 102, 230134832, "DSA"); Console.WriteLine("Student-7 Favourite Subject: "+stu7.Item7); // Get the type of Item7 // Using GetType() method Console.WriteLine("Type of Item7: "+stu7.Item7.GetType()); // Get the type of Item7 // Using Type.GetGenericArguments method Type stu7type = stu7.GetType(); Console.WriteLine("Type of Item7: "+stu7type.GetGenericArguments()[6]); Console.WriteLine(); } }
Student-7 Favourite Subject: DSA Type of Item7: System.String Type of Item7: System.String
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