Tuple<T1,T2,T3,T4,T5>.Item3 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前 Tuple<T1,T2,T3,T4,T5> 对象的第三个分量的值。
public:
property T3 Item3 { T3 get(); };
public T3 Item3 { get; }
member this.Item3 : 'T3
Public ReadOnly Property Item3 As T3
属性值
T3
当前 Tuple<T1,T2,T3,T4,T5> 对象的第三个分量的值。
示例
下面的示例定义一个 对象的数组Tuple<T1,T2,T3,T4,T5>,这些对象的组件包含美国中的州名称、1990 年和 2000 年的人口、此 10 年期间的总体变化及其总体的百分比变化。 然后,它会循环访问数组,并在元组中显示每个组件的值。
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>[] statesData =
{ 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 the items of each tuple
Console.WriteLine("{0,-12}{1,18}{2,18}{3,15}{4,12}\n", "State",
"Population 1990", "Population 2000", "Change",
"% Change");
foreach(Tuple<string, int, int, int, double> stateData in statesData)
Console.WriteLine("{0,-12}{1,18:N0}{2,18:N0}{3,15:N0}{4,12:P1}",
stateData.Item1, stateData.Item2,
stateData.Item3, stateData.Item4, stateData.Item5/100);
}
}
// The example displays the following output:
// State Population 1990 Population 2000 Change % Change
//
// California 29,760,021 33,871,648 4,111,627 13.8 %
// Illinois 11,430,602 12,419,293 988,691 8.6 %
// Washington 4,866,692 5,894,121 1,027,429 21.1 %
open System
// Define array of tuples reflecting population change by state, 1990-2000.
let statesData =
[| 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 the items of each tuple
printfn "%-12s%18s%18s%15s%12s\n" "State" "Population 1990" "Population 2000" "Change" "% Change"
for stateData in statesData do
printfn $"{stateData.Item1,-12}{stateData.Item2,18:N0}{stateData.Item3,18:N0}{stateData.Item4,15:N0}{stateData.Item5,12:P1}"
// The example displays the following output:
// State Population 1990 Population 2000 Change % Change
//
// California 29,760,021 33,871,648 4,111,627 13.8 %
// Illinois 11,430,602 12,419,293 988,691 8.6 %
// Washington 4,866,692 5,894,121 1,027,429 21.1 %
Module Example
Public Sub Main()
' Define array of tuples reflecting population change by state, 1990-2000.
Dim statesData() =
{ 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 the items of each tuple
Console.WriteLine("{0,-12}{1,18}{2,18}{3,15}{4,12}", "State", "Population 1990", _
"Population 2000", "Change", "% Change")
Console.WriteLine()
For Each stateData As Tuple(Of String, Integer, Integer, Integer, Double) In statesData
Console.WriteLine("{0,-12}{1,18:N0}{2,18:N0}{3,15:N0}{4,12:P1}", _
stateData.Item1, stateData.Item2, _
stateData.Item3, stateData.Item4, stateData.Item5/100)
Next
End Sub
End Module
' The example displays the following output:
' State Population 1990 Population 2000 Change % Change
'
' California 29,760,021 33,871,648 4,111,627 13.8 %
' Illinois 11,430,602 12,419,293 988,691 8.6 %
' Washington 4,866,692 5,894,121 1,027,429 21.1 %
注解
可以通过以下两种方式之一动态确定组件的类型 Item2 :
通过对 属性返回Item2的值调用
GetType
方法。通过 Type 检索表示 Tuple<T1,T2,T3,T4> 对象的 对象,并从其 Type.GetGenericArguments 方法返回的数组中检索第二个元素。