.NET/Link API Version 1.7 USE FRAMES

Expr Constructor (Object, Object[])

Creates an Expr with the given head and arguments.

[Visual Basic]
Overloads Public Sub New( _
   ByVal head As Object, _
   ParamArray args As Object() _
)
[C#]
public Expr(
   object head,
   params object[] args
);

Parameters

head
An object giving the head of the new Expr.
args
A sequence or array of objects giving the arguments of this Expr; pass null or an empty array for no arguments.

Remarks

The head and args are made into Exprs by calling the Expr constructor on each object, unless they are already Exprs, in which case they are used directly.

Exceptions

Exception Type Condition
ArgumentException If any of the objects are of a type that cannot be handled.

See Also

Expr Class | Wolfram.NETLink Namespace | Expr Constructor Overload List