|   | RangeT Constructor | 
        
        
            Creates a new instance of the 
RangeT class using the default comparer.
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic Range(
	T start,
	T end
)
Public Sub New ( 
	start As T,
	end As T
)
public:
Range(
	T start, 
	T end
)
new : 
        start : 'T * 
        end : 'T -> RangeGSF.Range = function(start, end);
Parameters
- start  T
- The start value of the range.
- end  T
- The end value of the range.
 See Also
See Also