Utility.Append Method

Appends the second array at the end of first one.
Public Shared Function Append( _ 
ByVal first As Double(,), _ 
ByVal second As Double(,) _ 
) As Double(,)
This language is not supported or no code example is available.
public static double[,] Append( 
double[,] first
double[,] second 
)
This language is not supported or no code example is available.

Parameters

first
double[,]

First rectangular array

second
double[,]

Second rectangular array

Return Value

double[,]

A single array containing first and second.

.NET Framework

Supported in: 4.8

In this article

Definition