Method Overlaps
- Namespace
- Skyline.DataMiner.Core.DataMinerSystem.Common
- Assembly
- Skyline.DataMiner.Core.DataMinerSystem.Common.dll
Overlaps(IEnumerable<IDmsView>)
Determines whether the current object and a specified collection share common items.
public bool Overlaps(IEnumerable<IDmsView> other)
Parameters
other
IEnumerable<IDmsView>The collection to compare to the current object.
Returns
- bool
true
if this object and other share at least one common element; otherwise,false
.
Remarks
This method is an O(n
) operation, where n
is the number of items in other
.
Exceptions
- ArgumentNullException
other
is null.