หากต้องการตรวจสอบว่า SortedSet และคอลเลกชันที่ระบุมีองค์ประกอบเหมือนกันหรือไม่ รหัสจะเป็นดังนี้ -
ตัวอย่าง
using System; using System.Collections.Generic; public class Demo { public static void Main() { SortedSet<int> set1 = new SortedSet<int>(); set1.Add(100); set1.Add(200); set1.Add(300); SortedSet<int> set2 = new SortedSet<int>(); set2.Add(450); set2.Add(550); set2.Add(650); set2.Add(750); set2.Add(800); Console.WriteLine("Does it contain the same elements? = "+set1.SetEquals(set2)); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Does it contain the same elements? = False
ตัวอย่าง
เรามาดูตัวอย่างกัน −
using System; using System.Collections.Generic; public class Demo { public static void Main() { SortedSet<int> set1 = new SortedSet<int>(); set1.Add(100); set1.Add(200); set1.Add(300); SortedSet<int> set2 = new SortedSet<int>(); set2.Add(100); set2.Add(200); set2.Add(300); Console.WriteLine("Does it contain the same elements? = "+set1.SetEquals(set2)); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Does it contain the same elements? = True