DllFunction.NextArgIsInt64Array

Prototypes

void NextArgIsInt64Array( <long[] array> )

Parameters

long[] array
The array to assign to this parameter. If you call this method without specifying array, you are specifying the type of the function's parameter without specifying its value. You can specify the value later by calling the method SetInt64ArrayArg.

Remarks

This method declares the type of the function's next parameter to be an array of 64-bit integers.

Example
declare long[] array = new long[2];
array[0] = 1;
array[1] = 2;
func.NextArgIsInt64Array( array );
See Also

DllFunction.SetInt64ArrayArg