ISet<T>.IsProperSubsetOf(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 actuel est un sous-ensemble (strict) approprié d'une collection spécifiée.
public:
bool IsProperSubsetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsProperSubsetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsProperSubsetOf : seq<'T> -> bool
Public Function IsProperSubsetOf (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 sous-ensemble approprié de other
; sinon, false
.
Exceptions
other
a la valeur null
.
Remarques
Si l’ensemble actuel est un sous-ensemble approprié de other
, other
doit avoir au moins un élément que le jeu actuel n’a pas.
Un jeu vide est un sous-ensemble approprié de toute autre collection. Par conséquent, cette méthode retourne true
si le jeu actuel est vide, sauf si le other
paramètre est également un jeu vide.
Cette méthode retourne false
toujours si l’ensemble actuel a plus ou le même nombre d’éléments que other
.