Tuple<T1,T2>.ToString メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この Tuple<T1,T2> インスタンスの値を表す文字列を返します。
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
戻り値
この Tuple<T1,T2> オブジェクトの文字列表現。
例
次の例は、 メソッドを ToString 示しています。
using System;
public class Class1
{
public static void Main()
{
Tuple<string, Nullable<int>>[] scores =
{ new Tuple<string, Nullable<int>>("Abbey", 92),
new Tuple<string, Nullable<int>>("Dave", 88),
new Tuple<string, Nullable<int>>("Ed", null),
new Tuple<string, Nullable<int>>("Jack", 78),
new Tuple<string, Nullable<int>>("Linda", 99),
new Tuple<string, Nullable<int>>("Judith", 84),
new Tuple<string, Nullable<int>>("Penelope", 82),
new Tuple<string, Nullable<int>>("Sam", 91) };
foreach (var score in scores)
Console.WriteLine(score.ToString());
}
}
// The example displays the following output:
// (Abbey, 92)
// (Dave, 88)
// (Ed, )
// (Jack, 78)
// (Linda, 99)
// (Judith, 84)
// (Penelope, 82)
// (Sam, 91)
open System
let scores =
[| Tuple<string, Nullable<int>>("Abbey", 92)
Tuple<string, Nullable<int>>("Dave", 88)
Tuple<string, Nullable<int>>("Ed", Nullable())
Tuple<string, Nullable<int>>("Jack", 78)
Tuple<string, Nullable<int>>("Linda", 99)
Tuple<string, Nullable<int>>("Judith", 84)
Tuple<string, Nullable<int>>("Penelope", 82)
Tuple<string, Nullable<int>>("Sam", 91) |]
for score in scores do
printfn $"{score.ToString()}"
// The example displays the following output:
// (Abbey, 92)
// (Dave, 88)
// (Ed, )
// (Jack, 78)
// (Linda, 99)
// (Judith, 84)
// (Penelope, 82)
// (Sam, 91)
Module modMain
Public Sub Main()
Dim scores() As Tuple(Of String, Nullable(Of Integer)) =
{ New Tuple(Of String, Nullable(Of Integer))("Abbey", 92),
New Tuple(Of String, Nullable(Of Integer))("Dave", 88),
New Tuple(Of String, Nullable(Of Integer))("Ed", Nothing), New Tuple(Of String, Nullable(Of Integer))("Jack", 78),
New Tuple(Of String, Nullable(Of Integer))("Linda", 99),
New Tuple(Of String, Nullable(Of Integer))("Judith", 84),
New Tuple(Of String, Nullable(Of Integer))("Penelope", 82),
New Tuple(Of String, Nullable(Of Integer))("Sam", 91) }
For Each score In scores
Console.WriteLine(score.ToString())
Next
End Sub
End Module
' The example displays the following output:
' (Abbey, 92)
' (Dave, 88)
' (Ed, )
' (Jack, 78)
' (Linda, 99)
' (Judith, 84)
' (Penelope, 82)
' (Sam, 91)
注釈
このメソッドによって返される文字列は、フォーム (Item1、Item2) を受け取ります。Item1 と Item2 は、 プロパティと Item2 プロパティの値をItem1表します。 いずれかのプロパティ値が の場合は null
、 として String.Empty表されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET