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

จะรับองค์ประกอบที่ห้าของ Tuple ใน C # ได้อย่างไร


เพื่อให้ได้องค์ประกอบที่ห้าของทูเปิล รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
public class Demo {
   public static void Main(String[] args){
      var tuple1 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);
      var tuple2 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);
      Console.WriteLine("Is Tuple1 equal to Tuple2? = "+tuple1.Equals(tuple2));
      Console.WriteLine("HashCode of Tuple1 = "+tuple1.GetHashCode());
      Console.WriteLine("HashCode of Tuple2 = "+tuple2.GetHashCode());
      Console.WriteLine("Tuple1 Item 5th = "+tuple1.Item5);
      Console.WriteLine("Tuple2 Item 5th = "+tuple2.Item5);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Is Tuple1 equal to Tuple2? = True
HashCode of Tuple1 = 3231587
HashCode of Tuple2 = 3231587
Tuple1 Item 5th = 100
Tuple2 Item 5th = 100

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
public class Demo {
   public static void Main(String[] args){
      var tuple = Tuple.Create(1200, 1500, 2200, 2700, 3100, 3500, 4500, 5500);
      Console.WriteLine("HashCode of Tuple = "+tuple.GetHashCode());
      Console.WriteLine("Tuple Item 1st = "+tuple.Item1);
      Console.WriteLine("Tuple Item 2nd = "+tuple.Item2);
      Console.WriteLine("Tuple Item 3rd = "+tuple.Item3);
      Console.WriteLine("Tuple Item 4th = "+tuple.Item4);
      Console.WriteLine("Tuple Item 5th = "+tuple.Item5);
      Console.WriteLine("Tuple Item 6th = "+tuple.Item6);
      Console.WriteLine("Tuple Item 7th = "+tuple.Item7);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

HashCode of Tuple = 49989024
Tuple Item 1st = 1200
Tuple Item 2nd = 1500
Tuple Item 3rd = 2200
Tuple Item 4th = 2700
Tuple Item 5th = 3100
Tuple Item 6th = 3500
Tuple Item 7th = 4500