Sandcastle XML Comments Guide
SetDocumentationIsSupersetOf Method |
Determines whether the current set is a superset of a specified collection.
Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public bool IsSupersetOf( IEnumerable<int> other )
Public Function IsSupersetOf ( other As IEnumerable(Of Integer) ) As Boolean
public: virtual bool IsSupersetOf( IEnumerable<int>^ other ) sealed
abstract IsSupersetOf : other : IEnumerable<int> -> bool override IsSupersetOf : other : IEnumerable<int> -> bool
Parameters
- other
- Type: System.Collections.GenericIEnumerableInt32
The collection to compare to the current set.
Return Value
Type: Booleantrue if the current set is a superset of other; otherwise, false.
Implements
ISetTIsSupersetOf(IEnumerableT)Exceptions
Exception | Condition |
---|---|
ArgumentNullException | other is null. |
See Also