Expr(Object, Object) Constructor
Creates an Expr with the given head and arguments.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
public Expr(
Object head,
params Object[] args
)
Public Sub New (
head As Object,
ParamArray args As Object()
)
public:
Expr(
Object^ head,
... array<Object^>^ args
)
new :
head : Object *
args : Object[] -> Expr
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.
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.