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

จะสร้าง tuple ด้วย string และ int items ใน C # ได้อย่างไร?


ขั้นแรก ตั้งค่าสองรายการในทูเพิล

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

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

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

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

if (tuple.Item2 == "Tom") {
   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>(20, "Tom");
         if (tuple.Item1 == 20) {
            Console.WriteLine(tuple.Item1);
         }
         if (tuple.Item2 == "Tom") {
            Console.WriteLine(tuple.Item2);
         }
      }
   }
}

ผลลัพธ์

20
Tom