C#
 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

  1. HashSetにC#で指定された要素が含まれているかどうかを確認します

    HashSetに指定された要素が含まれているかどうかを確認するためのコードは、次のとおりです- 例 using System; using System.Collections.Generic; public class Demo {    public static void Main(){       HashSet<int> set1 = new HashSet<int>();       set1.Add(25);       set1.Add(50);

  2. HashSetと指定されたコレクションがC#で共通の要素を共有しているかどうかを確認します

    HashSetと指定されたコレクションが共通の要素を共有しているかどうかを確認するには、C#コードは次のとおりです- 例 using System; using System.Collections.Generic; public class Demo {    public static void Main(){       HashSet<int> set1 = new HashSet<int>();       set1.Add(25);       se