SetDocumentation.IsProperSubsetOf Method

Sandcastle XML Comments

Sandcastle XML Comments GuideSetDocumentationIsProperSubsetOf Method
Determines whether the current set is a proper (strict) subset of a specified collection.

Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public bool IsProperSubsetOf(
	IEnumerable<int> other
)
Public Function IsProperSubsetOf ( 
	other As IEnumerable(Of Integer)
) As Boolean
public:
virtual bool IsProperSubsetOf(
	IEnumerable<int>^ other
) sealed
abstract IsProperSubsetOf : 
        other : IEnumerable<int> -> bool 
override IsProperSubsetOf : 
        other : IEnumerable<int> -> bool 

Parameters

other
Type: System.Collections.GenericIEnumerableInt32
The collection to compare to the current set.

Return Value

Type: Boolean
true if the current set is a proper subset of other; otherwise, false.

Implements

ISetTIsProperSubsetOf(IEnumerableT)
Exceptions
ExceptionCondition
ArgumentNullExceptionother is null.
See Also