C# 中的元组类
如果你想从类方法返回多个值,可以使用 C# 元组。若要在 C# 中创建元组,此类提供了一个静态方法。元组在 .NET 4.0 中引入。
示例
我们现在来看一个在 C# 中实现元组的示例 −
using System; public class Demo { public static void Main(string[] args) { Tuple<int, string> tuple = new Tuple<int, string>(2, "Tom"); if (tuple.Item1 == 150) { Console.WriteLine(tuple.Item1); } if (tuple.Item2 == "Tom") { Console.WriteLine(tuple.Item2); } } }
输出
这将产生以下输出 −
Tom
广告