Để kiểm tra xem SortedSet và bộ sưu tập được chỉ định có chứa các phần tử giống nhau hay không, mã như sau -
Ví dụ
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)); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Does it contain the same elements? = False
Ví dụ
Hãy để chúng tôi xem một ví dụ khác -
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)); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Does it contain the same elements? = True