Computer >> Máy Tính >  >> Lập trình >> C#

Đặt bộ tuple 6 mục trong C # ’

Với C #, bạn có thể dễ dàng đặt một bộ 6 mục.

Sau đây là bộ 6 mục -

var myTuple = new Tuple<string, string[], int, int, int, int>("electronics",
new string[] { "shoes", "clothing#", "accessories" },
100,
250,
500,
1000);

ở trên, chúng ta có bộ tuple cho chuỗi, mảng chuỗi và int như hình dưới đây -

Tuple<string, string[], int, int, int, int>

Đây là mã hoàn chỉnh -

Ví dụ

using System;
class Demo {
   static void Main() {
      var myTuple = new Tuple<string, string[], int, int, int, int>("electronics",
      new string[] { "shoes", "clothing#", "accessories" },
      100,
      250,
      500,
      1000);
      // Displaying Item 1
      Console.WriteLine(myTuple.Item1);
      // Displaying Item 5
      Console.WriteLine(myTuple.Item5);
      // Displaying Item 6
      Console.WriteLine(myTuple.Item6);
   }
}

Đầu ra

electronics
500
1000