Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / Append Method
First rectangular array
Second rectangular array

In This Topic
    Append Method
    In This Topic
    Appends the second array at the end of first one.
    Syntax
    'Declaration
     
    Public Shared Function Append( _
       ByVal first(,) As Double, _
       ByVal second(,) As Double _
    ) As Double(,)
    public static double[,] Append( 
       double[,] first,
       double[,] second
    )

    Parameters

    first
    First rectangular array
    second
    Second rectangular array

    Return Value

    A single array containing first and second.
    See Also