本文整理匯總了C#中System.Tuple<T1,T2,T3,T4,T5>.Item3屬性的典型用法代碼示例。如果您正苦於以下問題:C# Tuple<T1,T2,T3,T4,T5>.Item3屬性的具體用法?C# Tuple<T1,T2,T3,T4,T5>.Item3怎麽用?C# Tuple<T1,T2,T3,T4,T5>.Item3使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.Tuple<T1,T2,T3,T4,T5>
的用法示例。
在下文中一共展示了Tuple<T1,T2,T3,T4,T5>.Item3屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
//引入命名空間
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);
}
}
輸出:
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 %