DllFunction.NextArgIsInt8Array

Prototypes

void NextArgIsInt8Array( <byte[] array> )

Parameters

byte[] 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 SetInt8ArrayArg.

Remarks

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

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

DllFunction.SetInt8ArrayArg