Click or drag to resize

Range<T> .Contains(Range<T> , Comparison<T> ) Method

Determines whether the range contains the given range.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+cf93f5f8aea4b941e9b426fe4e180c2bd85d31a2
Syntax
public bool Contains(
	Range<T> range,
	Comparison<T> comparison
)
View Source

Parameters

range  Range<T>
The range to be compared with.
comparison  Comparison<T>
The comparison used to compare objects of type T.

Return Value

Boolean
True if the given range exists within this range; false otherwise.
See Also