Tuple<T1,T2,T3,T4,T5>.ToString メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この Tuple<T1,T2,T3,T4,T5> インスタンスの値を表す文字列を返します。
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
戻り値
この Tuple<T1,T2,T3,T4,T5> オブジェクトの文字列表現。
例
次の例は、 メソッドを ToString 示しています。 米国内の状態の名前、1990 年と 2000 年の人口、この 10 年間の人口変化、および人口変化の年率を含む 5 タプル オブジェクトの配列が表示されます。
using System;
public class Example
{
public static void Main()
{
// Define array of tuples reflecting population change by state, 1990-2000.
Tuple<string, int, int, int, double>[] populationChanges =
{ Tuple.Create("California", 29760021, 33871648, 4111627, 13.8),
Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6),
Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) };
// Display each tuple.
foreach (var item in populationChanges)
Console.WriteLine(item.ToString());
}
}
// The example displays the following output:
// (California, 29760021, 33871648, 4111627, 13.8)
// (Illinois, 11430602, 12419293, 988691, 8.6)
// (Washington, 4866692, 5894121, 1027429, 21.1)
open System
// Define array of tuples reflecting population change by state, 1990-2000.
let populationChanges =
[| Tuple.Create("California", 29760021, 33871648, 4111627, 13.8)
Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6)
Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) |]
// Display each tuple.
for item in populationChanges do
printfn $"{item.ToString()}"
// The example displays the following output:
// (California, 29760021, 33871648, 4111627, 13.8)
// (Illinois, 11430602, 12419293, 988691, 8.6)
// (Washington, 4866692, 5894121, 1027429, 21.1)
Module Example
Public Sub Main()
' Define array of tuples reflecting population change by state, 1990-2000.
Dim populationChanges() =
{ Tuple.Create("California", 29760021, 33871648, 4111627, 13.8),
Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6),
Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) }
' Display each tuple.
For Each item In populationChanges
Console.WriteLine(item.ToString())
Next
End Sub
End Module
' The example displays the following output:
' (California, 29760021, 33871648, 4111627, 13.8)
' (Illinois, 11430602, 12419293, 988691, 8.6)
' (Washington, 4866692, 5894121, 1027429, 21.1)
注釈
このメソッドによって返される文字列は、フォーム (Item1、Item2、Item3、Item4、Item5
)、Item1、Item2、Item3、Item4 を受け取りItem5
、、および の各プロパティのItem3Item4Item1Item2値をItem5表します。 プロパティ値のいずれかが の場合は null
、 として String.Empty表されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET