Expr(Object, Object) Constructor

Creates an Expr with the given head and arguments.

Definition

Namespace: Wolfram.NETLink
Assembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
C#
public Expr(
	Object head,
	params Object[] args
)

Parameters

head  Object
An object giving the head of the new Expr.
args  Object
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

ArgumentExceptionIf any of the objects are of a type that cannot be handled.

See Also