RangeT(T, T, Boolean, Boolean) Constructor
Creates a new instance of
RangeTNamespace: InnerDrive.CoreAssembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.2.9017.0
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)