.NET/Link API Version 1.7 USE FRAMES

IMathLink.PutArgCount Method 

Specifies the argument count for a composite expression being sent manually.

[Visual Basic]
Sub PutArgCount( _
   ByVal argCount As Integer _
)
[C#]
void PutArgCount(
   int argCount
);

Parameters

argCount
The number of arguments you will be sending.

Remarks

Use it after a call to PutNext with the ExpressionType.Function type.

See the example for PutNext.

Exceptions

Exception Type Condition
MathLinkException On any MathLink error.

See Also

IMathLink Interface | Wolfram.NETLink Namespace | PutNext