Tuple<T1,T2,T3,T4>.ToString Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Bu Tuple<T1,T2,T3,T4> örneğin değerini temsil eden bir dize döndürür.
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Döndürülenler
Bu Tuple<T1,T2,T3,T4> nesnenin dize gösterimi.
Örnekler
Aşağıdaki örnekte yöntemi gösterilmektedir ToString . Bir şehrin adını, yılın bir ayını ve o ayın yüksek ve düşük ortalama sıcaklığını içeren 4 tanımlama grubu nesneleri dizisinin bileşenlerini görüntüler.
using System;
public class Example
{
public static void Main()
{
Tuple<string, int, int, int>[] temperatures =
{ Tuple.Create("New York, NY", 4, 61, 43),
Tuple.Create("Chicago, IL", 2, 34, 18),
Tuple.Create("Newark, NJ", 4, 61, 43),
Tuple.Create("Boston, MA", 6, 77, 59),
Tuple.Create("Detroit, MI", 9, 74, 53),
Tuple.Create("Minneapolis, MN", 8, 81, 61) };
// Display the array of 4-tuple objects.
foreach (var temperature in temperatures)
Console.WriteLine(temperature.ToString());
}
}
// The example displays the following output:
// (New York, NY, 4, 61, 43)
// (Chicago, IL, 2, 34, 18)
// (Newark, NJ, 4, 61, 43)
// (Boston, MA, 6, 77, 59)
// (Detroit, MI, 9, 74, 53)
// (Minneapolis, MN, 8, 81, 61)
open System
let temperatures =
[| Tuple.Create("New York, NY", 4, 61, 43)
Tuple.Create("Chicago, IL", 2, 34, 18)
Tuple.Create("Newark, NJ", 4, 61, 43)
Tuple.Create("Boston, MA", 6, 77, 59)
Tuple.Create("Detroit, MI", 9, 74, 53)
Tuple.Create("Minneapolis, MN", 8, 81, 61) |]
// Display the array of 4-tuple objects.
for temperature in temperatures do
printfn $"{temperature}"
// The example displays the following output:
// (New York, NY, 4, 61, 43)
// (Chicago, IL, 2, 34, 18)
// (Newark, NJ, 4, 61, 43)
// (Boston, MA, 6, 77, 59)
// (Detroit, MI, 9, 74, 53)
// (Minneapolis, MN, 8, 81, 61)
Module Example
Public Sub Main()
Dim temperatures() =
{ Tuple.Create("New York, NY", 4, 61, 43), _
Tuple.Create("Chicago, IL", 2, 34, 18), _
Tuple.Create("Newark, NJ", 4, 61, 43), _
Tuple.Create("Boston, MA", 6, 77, 59), _
Tuple.Create("Detroit, MI", 9, 74, 53), _
Tuple.Create("Minneapolis, MN", 8, 81, 61) }
' Display the array of 4-tuple objects.
For Each temperature In temperatures
Console.WriteLine(temperature.ToString())
Next
End Sub
End Module
' The example displays the following output:
' (New York, NY, 4, 61, 43)
' (Chicago, IL, 2, 34, 18)
' (Newark, NJ, 4, 61, 43)
' (Boston, MA, 6, 77, 59)
' (Detroit, MI, 9, 74, 53)
' (Minneapolis, MN, 8, 81, 61)
Açıklamalar
Bu yöntem tarafından döndürülen dize (Item1, Item2, Item3, Item4) biçimini alır; burada Item1, Item2, Item3 ve Item4 sırasıyla , Item2, Item3ve Item4 özelliklerinin değerlerini Item1temsil eder. Özellik değerlerinden herhangi biri ise null
, olarak String.Emptytemsil edilir.