Click or drag to resize

IRangeTContains(T) Method

Returns true if the value is contained within this range.

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

Parameters

value  T
The value to compare with this range.

Return Value

Boolean
true if the value is contained within this range.
Remarks
A range contains values exactly equal to its lower or upper bound only when IsLowerInclusive or IsUpperInclusive is true, respectively.
See Also