adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / Range<T> Class / Range<T> Constructor / Range<T> Constructor(T)
The single value for the range


In This Topic
    Range<T> Constructor(T)
    In This Topic
    Creates a new Range for a single value
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal value As T _
    )
    public Range<T>( 
       T value
    )
    public:
    Range<T>( 
       T^ value
    )

    Parameters

    value
    The single value for the range
    Remarks
    Min and Max are both set to value. If Min > Max, the values are swapped.
    See Also