RangeTContains(T) Method

Returns true if the given range is contained within this range.

Definition

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.2.9017.0
C#
public bool Contains(
	T value
)

Parameters

value  T
The range to compare with this range.

Return Value

Boolean
true if the range is contained within this range.

Implements

IRangeTContains(T)

Remarks

A range contains values exactly equal to its lower or upper bound only when IsLowerInclusive or IsUpperInclusive is true, respectively.

See Also