void PutFunctionAndArgs(
string f,
params Object[] args
)
Sub PutFunctionAndArgs (
f As String,
ParamArray args As Object()
)
void PutFunctionAndArgs(
String^ f,
... array<Object^>^ args
)
abstract PutFunctionAndArgs :
f : string *
args : Object[] -> unit
The arguments are sent as they would be if you used the Put(Boolean) method on each one individually.
// This sends 1+2+3+4
ml.PutFunctionAndArgs("Plus", 1, 2, 3, 4);
ml.PutFunctionAndArgs("Plus", new int[]{1, 2, 3, 4});
MathLinkException | On any MathLink error. |