Click or drag to resize
MessagePackObjectDictionaryKeySetOverlaps Method
Determines whether the current set and a specified collection share common elements.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public bool Overlaps(
	IEnumerable<MessagePackObject> other
)

Parameters

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

Return Value

Type: Boolean
true if this set and other share at least one common element; otherwise, false.

Implements

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