Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะประกาศ tuple ใน C # ได้อย่างไร?


ในการประกาศ tuple ต่อไปนี้เป็นรูปแบบที่เรามี tuple ที่มีรายการ int และ string -

Tuple<int, string> tuple = new Tuple<int, string>(20, "Tom");

ตอนนี้ ให้ตรวจสอบรายการแรกในทูเพิล ซึ่งเป็นจำนวนเต็ม −

if (tuple.Item1 == 99) {
   Console.WriteLine(tuple.Item1);
}

ตอนนี้ตรวจสอบรายการที่สองในทูเพิลซึ่งเป็นสตริง -

if (tuple.Item2 == "Tim") {
   Console.WriteLine(tuple.Item2);
}

ต่อไปนี้คือตัวอย่างการสร้างทูเพิลด้วยสตริงและไอเท็ม int -

using System;
using System.Threading;

namespace Demo {
   class Program {

      static void Main(string[] args) {

         Tuple<int, string> tuple = new Tuple<int, string>(50, "Tom");

         if (tuple.Item1 == 99) {
            Console.WriteLine(tuple.Item1);
         }

         if (tuple.Item2 == "Tim") {
            Console.WriteLine(tuple.Item2);
         }
      }
   }
}