Set DocumentationIs Proper Superset Of Method
Determines whether the current set is a proper (strict) superset of a specified collection.
Definition
Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
if the current set is a proper superset of other; otherwise, .
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
C#
public bool IsProperSupersetOf(
IEnumerable<int> other
)VB
Public Function IsProperSupersetOf (
other As IEnumerable(Of Integer)
) As BooleanC++
public:
virtual bool IsProperSupersetOf(
IEnumerable<int>^ other
) sealedF#
abstract IsProperSupersetOf :
other : IEnumerable<int> -> bool
override IsProperSupersetOf :
other : IEnumerable<int> -> bool Parameters
- other IEnumerableInt32
- The collection to compare to the current set.
Return Value
Booleanif the current set is a proper superset of other; otherwise, .
Implements
ISetTIsProperSupersetOf(IEnumerableT)Exceptions
| ArgumentNullException | other is . |