Una tupla es una estructura de datos que le brinda la forma más fácil de representar un conjunto de datos. También puede obtener una string que represente un objeto de tupla mediante el método ToString . Este método devuelve una string que representará el objeto Tuple<T1, T2, T3, T4, T5, T6, T7, TRest>. La string representada por este método tiene la forma de (Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8..) aquí Item1, Item2, Item3, Item4, Item5, Item6, Item7 representan los valores de Item1, Las propiedades Item2, Item3, Item4, Item5, Item6, Item7 y Item8 representan el valor de la propiedad Next.Item1 del objeto Tuple<T1, T2, T3, T4, T5, T6, T7, TRest> y el valor de cualquier objeto anidado adicional. los componentes son seguidos por Item8. Representará un String.Emptysi alguna propiedad contiene un valor nulo.
Sintaxis:
public override string ToString ();
Tipo de devolución: el tipo de devolución de este método es System.String . Entonces, devolverá una string que representa el objeto Tuple<T1, T2, T3, T4, T5, T6, T7, TRest>.
Ejemplo 1:
// C# program to illustrate // the use of ToString method using System; namespace exampleoftuple { class GFG { // Main Method static void Main(string[] args) { // 1-Tuple var v1 = Tuple.Create("Rohit"); // Get the value of Tuple<T1> // With the help of ToString method Console.WriteLine("Tuple 1: " + v1.ToString()); // 2-Tuple var v2 = Tuple.Create("Sheema", "Riya"); // Get the value of Tuple<T1, T2> // With the help of ToString method Console.WriteLine("Tuple 2: " + v2.ToString()); // 3-Tuple var v3 = Tuple.Create("Rima", "Suman", "Sohan"); // Get the value of Tuple<T1, T2, T3> // With the help of ToString method Console.WriteLine("Tuple 3: " + v3.ToString()); // 4-Tuple var v4 = Tuple.Create("Shilpa", "Susma", "Sumit", "Rohan"); // Get the value of Tuple<T1, T2, T3, T4> // With the help of ToString method Console.WriteLine("Tuple 4: " + v4.ToString()); } } }
Tuple 1: (Rohit) Tuple 2: (Sheema, Riya) Tuple 3: (Rima, Suman, Sohan) Tuple 4: (Shilpa, Susma, Sumit, Rohan)
Ejemplo 2:
// C# program to illustrate the // use of ToString method using System; namespace exampleoftuple { class GFG { // Main Method static void Main(string[] args) { // 5-Tuple var v5 = Tuple.Create("G", "E", "E", "K", "S"); // Get the value of Tuple<T1, T2, T3, T4, T5> // With the help of ToString method Console.WriteLine("Tuple 5: " + v5.ToString()); // 6-Tuple var v6 = Tuple.Create("C", "C#", "C++", "Python", "Java", "Perl"); // Get the value of Tuple<T1, T2, T3, T4, T5, T6> // With the help of ToString method Console.WriteLine("Tuple 6: " + v6.ToString()); // 7-Tuple var v7 = Tuple.Create(12, 45, 67, 78, 87, 97, 87); // Get the value of Tuple<T1, T2, // T3, T4, T5, T6, T7> // With the help of ToString method Console.WriteLine("Tuple 7: " + v7.ToString()); // 8-Tuple var v8 = Tuple.Create("G", "E", "E", "K", "S", "F", "O", Tuple.Create("R", "G", "E", "E", "K", "S")); // Get the value of Tuple<<T1, T2, T3, // T4, T5, T6, T7, TRest> // With the help of ToString method Console.WriteLine("Tuple 8: " + v8.ToString()); } } }
Tuple 5: (G, E, E, K, S) Tuple 6: (C, C#, C++, Python, Java, Perl) Tuple 7: (12, 45, 67, 78, 87, 97, 87) Tuple 8: (G, E, E, K, S, F, O, (R, G, E, E, K, S))
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