Rumah  >  Artikel  >  pembangunan bahagian belakang  >  Bagaimana untuk membuat 6-tuple dalam C#?

Bagaimana untuk membuat 6-tuple dalam C#?

WBOY
WBOYke hadapan
2023-09-12 15:53:06737semak imbas

Kelas

如何在 C# 中创建 6 元组?

Tuple mewakili 6-tuple. Tuple ialah struktur data dengan urutan elemen.

Ia mempunyai enam sifat -

  • Item1 − Dapatkan nilai komponen pertama objek Tuple semasa.

  • Item2 − Dapatkan nilai komponen kedua objek Tuple semasa.

  • Item3 − Dapatkan komponen ketiga objek Tuple semasa.

  • Item4 − Dapatkan nilai Tuple semasa Komponen keempat objek.

  • Item5 − Dapatkan komponen kelima objek Tuple semasa.

  • Item6 − Dapatkan komponen keenam objek Tuple semasa. . Contoh

  • Sekarang mari kita lihat satu lagi contoh pelaksanaan 6-tuple dalam C# -
using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<string,int,string,int,int,string> tuple = new Tuple<string,int,string,int,int,string>("jack", 150, "pete", 300, 600, "allan");
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      Console.WriteLine("Value (Item5)= " + tuple.Item5);
      Console.WriteLine("Value (Item6)= " + tuple.Item6);
      if (tuple.Item1 == "kevin") {
         Console.WriteLine("Exists: Tuple Item 1 = " +tuple.Item1);
      }
      if (tuple.Item2 == 250) {
         Console.WriteLine("Exists: Tuple Item 2 = " +tuple.Item2);
      }
      if (tuple.Item3 == "pete") {
         Console.WriteLine("Exists: Tuple Item 3 = " +tuple.Item3);
      }
      if (tuple.Item4 == 300) {
         Console.WriteLine("Exists: Tuple Item 4 = " +tuple.Item4);
      }
      if (tuple.Item5 == 400) {
         Console.WriteLine("Exists: Tuple Item 5 = " +tuple.Item5);
      }
      if (tuple.Item6 == "allan") {
         Console.WriteLine("Exists: Tuple Item 6 = " +tuple.Item6);
      }
   }
}

Atas ialah kandungan terperinci Bagaimana untuk membuat 6-tuple dalam C#?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Artikel ini dikembalikan pada:tutorialspoint.com. Jika ada pelanggaran, sila hubungi admin@php.cn Padam