Set DocumentationIs Proper Subset Of Method
Determines whether the current set is a proper (strict) subset 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 subset of other; otherwise, .
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
C#
public bool IsProperSubsetOf(
IEnumerable<int> other
)VB
Public Function IsProperSubsetOf (
other As IEnumerable(Of Integer)
) As BooleanC++
public:
virtual bool IsProperSubsetOf(
IEnumerable<int>^ other
) sealedF#
abstract IsProperSubsetOf :
other : IEnumerable<int> -> bool
override IsProperSubsetOf :
other : IEnumerable<int> -> bool Parameters
- other IEnumerableInt32
- The collection to compare to the current set.
Return Value
Booleanif the current set is a proper subset of other; otherwise, .
Implements
ISetTIsProperSubsetOf(IEnumerableT)Exceptions
| ArgumentNullException | other is . |