SetDocumentation.Overlaps Method

Sandcastle XML Comments

Sandcastle XML Comments GuideSetDocumentationOverlaps Method
Determines whether the current set overlaps with the specified collection.

Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public bool Overlaps(
	IEnumerable<int> other
)
Public Function Overlaps ( 
	other As IEnumerable(Of Integer)
) As Boolean
public:
virtual bool Overlaps(
	IEnumerable<int>^ other
) sealed
abstract Overlaps : 
        other : IEnumerable<int> -> bool 
override Overlaps : 
        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 and other share at least one common element; otherwise, false.

Implements

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