Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / Min<T> Method
First value
Second value
Third value

In This Topic
    Min<T> Method
    In This Topic
    Returns the min of three values.
    Syntax
    'Declaration
     
    Public Shared Function Min(Of T As IComparable)( _
       ByVal a As T, _
       ByVal b As T, _
       ByVal c As T _
    ) As T
    public static T Min<T>( 
       T a,
       T b,
       T c
    )
    where T: IComparable

    Parameters

    a
    First value
    b
    Second value
    c
    Third value

    Type Parameters

    T

    Return Value

    The maximum value.
    See Also