RangeT(T, T) Constructor

Initializes a new instance of the RangeT struct between the specified lowerBound and upperBound.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public Range(
	T lowerBound,
	T upperBound
)

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.

See Also