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

จะเริ่มต้น tuple เป็น tuple ว่างใน C # ได้อย่างไร?


ในการเริ่มต้นทูเพิลเป็นทูเพิลว่าง -

Tuple<string, string> myTuple;

หากคุณต้องการตรวจสอบค่าในทูเพิล ว่าค่านั้นเป็นโมฆะหรือไม่ −

ตัวอย่าง

using System;

namespace Demo {
   class Program {
      static void Main(string[] args) {
         Tuple <int, string> tuple = new Tuple<int, string>(10, null);

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

         if (tuple.Item2 == null) {
            Console.WriteLine("Item is null");
         }
      }
   }
}