HashSet<T>.IntersectWith(IEnumerable<T>) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
.