RangeT(T, T) Constructor
Initializes a new instance of the
RangeT struct between the specified
lowerBound and
upperBound.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public Range(
T lowerBound,
T upperBound
)
Public Sub New (
lowerBound As T,
upperBound As T
)
public:
Range(
T lowerBound,
T upperBound
)
new :
lowerBound : 'T *
upperBound : 'T -> Range
Parameters
- lowerBound T
- The lower bound.
- upperBound T
- The upper bound. Whether this is an exclusive or inclusive bound, it depends on the context it is used in.