Tuple<T1,T2,T3,T4,T5,T6>.ToString Metodo

Definizione

Restituisce una stringa che rappresenta il valore di questa istanza di Tuple<T1,T2,T3,T4,T5,T6>.

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Restituisce

Rappresentazione di stringa dell'oggetto Tuple<T1,T2,T3,T4,T5,T6>.

Esempio

Nell'esempio seguente viene definito un Tuple<T1,T2,T3,T4,T5,T6> oggetto contenente i dati sulla popolazione per New York City per ogni censimento compreso tra il 1960 e il 2000. I componenti della sextuple vengono quindi visualizzati da una chiamata al ToString metodo .

using System;

public class Example
{
   public static void Main()
   {
      // Get population data for New York City, 1960-2000.
      var population = Tuple.Create("New York", 7781984, 7894862, 
                                    7071639, 7322564, 8008278);
      Console.WriteLine(population.ToString());
   }
}
// The example displays the following output:
//    (New York, 7781984, 7894862, 7071639, 7322564, 8008278)
open System

// Get population data for New York City, 1960-2000.
let population = Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278)
printfn $"{population.ToString()}"
// The example displays the following output:
//    (New York, 7781984, 7894862, 7071639, 7322564, 8008278)
Module Example
   Public Sub Main()
      ' Get population data for New York City, 1960-2000.
      Dim population = Tuple.Create("New York", 7781984, 7894862, 
                                    7071639, 7322564, 8008278)
      Console.WriteLine(population.ToString())                                 
   End Sub
End Module
' The example displays the following output:
'       (New York, 7781984, 7894862, 7071639, 7322564, 8008278)

Commenti

La stringa restituita da questo metodo assume il formato (Item1, Item2, Item3, Item4, Item5, Item6), dove Item1, Item2, Item3, Item4, Item5 e Item6 rappresentano rispettivamente i valori delle Item1proprietà , Item2, Item3Item4Item5e .Item6 Se uno dei valori della proprietà è null, viene rappresentato come String.Empty.

Si applica a