Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / Swap<T> Method
The type of values to swap
First value
Second value

In This Topic
    Swap<T> Method (Utility)
    In This Topic
    Swaps two values.
    Syntax
    'Declaration
     
    Public Shared Sub Swap(Of T)( _
       ByRef first As T, _
       ByRef second As T _
    ) 
    public static void Swap<T>( 
       ref T first,
       ref T second
    )

    Parameters

    first
    First value
    second
    Second value

    Type Parameters

    T
    The type of values to swap
    See Also