void SetDoubleArrayArg( int nPos, double[] array )
int nPos
The number (1-based) of the parameter whose value you want to set.
double[] array
The array to assign to the function parameter.
This method assigns a value to the specified parameter. The type of the parameter must have been previously declared with the method NextArgIsDoubleArray.
declare double[] array = new double[2];
array[0] = 1;
array[1] = 2;
func.SetDoubleArrayArg( 5, array );