csharp 元组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 元组相关的知识,希望对你有一定的参考价值。

//Tuple元组类型是根据item来取值,根据放入的顺序来决定item1,item2等等
// Create a 7-tuple.var population = new Tuple<string, int, int, int, int, int, int>(
                          "New York", 7891957, 7781984,
                          7894862, 7071639, 7322564, 8008278);
// Display the first and last elements.
Console.WriteLine("Population of {0} in 2000: {1:N0}",
                  population.Item1, population.Item7);
// The example displays the following output://      Population of New York in 2000: 8,008,2781



//不过最多还是放入8位数字(  Tuple<T1, T2, T3, T4, T5, T6, T7, TRest> ),而且调用第八位数字的时候,需要使用XXX.Rest.Item1这种调用方法
//正常的是( Tuple<T1, T2, T3, T4, T5, T6, T7> )

var primes = Tuple.Create(2, 3, 5, 7, 11, 13, 17, 19);
Console.WriteLine("Prime numbers less than 20: " +
                  "{0}, {1}, {2}, {3}, {4}, {5}, {6}, and {7}",
                  primes.Item1, primes.Item2, primes.Item3,
                  primes.Item4, primes.Item5, primes.Item6,
                  primes.Item7, primes.Rest.Item1);
// The example displays the following output://    Prime numbers less than 20: 2, 3, 5, 7, 11, 13, 17, and 19

以上是关于csharp 元组的主要内容,如果未能解决你的问题,请参考以下文章

csharp 匿名类型比元组更好

csharp 元组

csharp 使元组更容易使用

Tuple和 ValueTuple

字典 元组

Python:元组列表:比较所有元组并检索元组的元素不等于任何其他元组的元组