Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

SortedSet 및 지정된 컬렉션이 C#에서 동일한 요소를 포함하는지 확인

<시간/>

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