當前位置: 首頁>>代碼示例>>C#>>正文


C# Tuple<T1,T2,T3,T4,T5,T6>類代碼示例

本文整理匯總了C#中System.Tuple<T1,T2,T3,T4,T5,T6>的典型用法代碼示例。如果您正苦於以下問題:C# Tuple<T1,T2,T3,T4,T5,T6>類的具體用法?C# Tuple<T1,T2,T3,T4,T5,T6>怎麽用?C# Tuple<T1,T2,T3,T4,T5,T6>使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Tuple<T1,T2,T3,T4,T5,T6>類屬於System命名空間,在下文中一共展示了Tuple<T1,T2,T3,T4,T5,T6>類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Main

//引入命名空間
using System;

public class Example
{
   public static void Main()
   {
      // Get population data for New York City, 1960-2000.
      var population = 
           Tuple.Create("New York", 7781984, 7894862, 7071639, 7322564, 8008278);
      var rate = ComputePopulationChange(population);
      // Display results.
      Console.WriteLine("Population Change, {0}, 1960-2000\n", population.Item1);
      Console.WriteLine("Year      {0,10} {1,9}", "Population", "Annual Rate");
      Console.WriteLine("1960      {0,10:N0} {1,11}", population.Item2, "NA");
      Console.WriteLine("1970      {0,10:N0} {1,11:P2}", population.Item3, rate.Item2/10);
      Console.WriteLine("1980      {0,10:N0} {1,11:P2}", population.Item4, rate.Item3/10);
      Console.WriteLine("1990      {0,10:N0} {1,11:P2}", population.Item5, rate.Item4/10);
      Console.WriteLine("2000      {0,10:N0} {1,11:P2}", population.Item6, rate.Item5/10);
      Console.WriteLine("1960-2000 {0,10:N0} {1,11:P2}", "", rate.Item6/50);
   }

   private static Tuple<string, double, double, double, double, double> ComputePopulationChange(
           Tuple<string, int, int, int, int, int> data)  
   {           
      var rate = Tuple.Create(data.Item1, 
                              (double)(data.Item3 - data.Item2)/data.Item2, 
                              (double)(data.Item4 - data.Item3)/data.Item3, 
                              (double)(data.Item5 - data.Item4)/data.Item4, 
                              (double)(data.Item6 - data.Item5)/data.Item5,
                              (double)(data.Item6 - data.Item2)/data.Item2 );
      return rate;
   }           
}
開發者ID:.NET開發者,項目名稱:System,代碼行數:34,代碼來源:Tuple

輸出:

Population Change, New York, 1960-2000

Year      Population Annual Rate
1960       7,781,984          NA
1970       7,894,862      0.15 %
1980       7,071,639     -1.04 %
1990       7,322,564      0.35 %
2000       8,008,278      0.94 %
1960-2000                 0.06 %


注:本文中的System.Tuple<T1,T2,T3,T4,T5,T6>類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。