IImmutableSet<T>.IsProperSupersetOf(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.
Détermine si l’ensemble immuable actuel est un sur-ensemble (strict) de la collection spécifiée.
public:
bool IsProperSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsProperSupersetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsProperSupersetOf : seq<'T> -> bool
Public Function IsProperSupersetOf (other As IEnumerable(Of T)) As Boolean
Paramètres
- other
- IEnumerable<T>
Collection à comparer à l’ensemble actuel.
Retours
true
si l’ensemble actuel est un sur-ensemble approprié de la collection spécifiée ; sinon, false
.
Remarques
Si le jeu actuel est un sur-ensemble approprié de other
, le jeu actuel doit avoir au moins un élément qui other
n’a pas.