RangeT(T, T, Boolean, Boolean) Constructor

Creates a new instance of RangeT

Definition

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.2.9017.0
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