Click or drag to resize

RangeT(T, T, Boolean, Boolean) Constructor

Creates a new instance of RangeT

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.0.8475.0
Syntax
C#
public Range(
	T lowerValue,
	T upperValue,
	bool isLowerInclusive = true,
	bool isUpperInclusive = true
)

Parameters

lowerValue  T
The lower value to use in the RangeT
upperValue  T
The upperValue value to use in the RangeT
isLowerInclusive  Boolean  (Optional)
Indicates whether the range should treat its lower bound as inclusive in comparisons (optional; default true)
isUpperInclusive  Boolean  (Optional)
Indicates whether the range should treat its upper bound as inclusive in comparisons (optional; default true)
See Also