HashSet<T>.IntersectWith(IEnumerable<T>) Méthode

Définition

Modifie l’objet HashSet<T> actif afin qu’il contienne uniquement les éléments qui sont présents dans cet objet et dans la collection spécifiée.

public:
 virtual void IntersectWith(System::Collections::Generic::IEnumerable<T> ^ other);
public:
 void IntersectWith(System::Collections::Generic::IEnumerable<T> ^ other);
public void IntersectWith (System.Collections.Generic.IEnumerable<T> other);
[System.Security.SecurityCritical]
public void IntersectWith (System.Collections.Generic.IEnumerable<T> other);
abstract member IntersectWith : seq<'T> -> unit
override this.IntersectWith : seq<'T> -> unit
[<System.Security.SecurityCritical>]
member this.IntersectWith : seq<'T> -> unit
[<System.Security.SecurityCritical>]
abstract member IntersectWith : seq<'T> -> unit
override this.IntersectWith : seq<'T> -> unit
Public Sub IntersectWith (other As IEnumerable(Of T))

Paramètres

other
IEnumerable<T>

Collection à comparer à l'objet HashSet<T> actif.

Implémente

Attributs

Exceptions

other a la valeur null.

Remarques

Si la collection représentée par le other paramètre est une HashSet<T> collection avec le même comparateur d’égalité que l’objet actuel HashSet<T> , cette méthode est une opération O(n). Sinon, cette méthode est une opération O(n + m), où n est Count et m est le nombre d’éléments dans other.

S’applique à