SortedSet<T>.ExceptWith(IEnumerable<T>) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在の SortedSet<T> オブジェクトから、指定されたコレクションに含まれる要素をすべて削除します。
public:
virtual void ExceptWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void ExceptWith (System.Collections.Generic.IEnumerable<T> other);
abstract member ExceptWith : seq<'T> -> unit
override this.ExceptWith : seq<'T> -> unit
Public Sub ExceptWith (other As IEnumerable(Of T))
パラメーター
- other
- IEnumerable<T>
SortedSet<T> オブジェクトから削除する項目のコレクション。
実装
例外
other
が null
です。
例
次の例では、別の並べ替えられたセットで重複する並べ替えられたセットから要素を削除します。 このコード例は、SortedSet<T> クラスのために提供されている大規模な例の一部です。
// Remove elements in mediaFiles1 that are also in mediaFiles2.
Console.WriteLine("Remove duplicates (of mediaFiles2) from the set...");
Console.WriteLine($"\tCount before: {mediaFiles1.Count}");
mediaFiles1.ExceptWith(mediaFiles2);
Console.WriteLine($"\tCount after: {mediaFiles1.Count}");
' Remove elements in mediaFiles1 that are also in mediaFiles2.
Console.WriteLine("Remove duplicates (of mediaFiles2) from the set...")
Console.WriteLine($"{vbTab}Count before: {mediaFiles1.Count}")
mediaFiles1.ExceptWith(mediaFiles2)
Console.WriteLine($"{vbTab}Count after: {mediaFiles1.Count}")
注釈
このメソッドは、 内にある現在 SortedSet<T> の 内のすべての要素を other
削除します。 内の other
重複する値は無視されます。
このメソッドは操作です O(n)
。ここで n
、 は パラメーター内 other
の要素の数です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET