ExprCreateFromLink Method
Creates an Expr by reading it off a link.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
public static Expr CreateFromLink(
IMathLink ml
)
Public Shared Function CreateFromLink (
ml As IMathLink
) As Expr
public:
static Expr^ CreateFromLink(
IMathLink^ ml
)
static member CreateFromLink :
ml : IMathLink -> Expr
- ml IMathLink
- The link from which the Expr should be read.
ExprThe created Expr
This factory method will only be used by advanced programmers who are creating their own classes that
implement the
IMathLink interface. You would call this method in your implementation of
GetExpr. In other words, this method exists not as a means for casual
users to create Exprs from a link (use the
GetExpr method instead),
but so that IMathLink implementors can write their own GetExpr methods without having to know anything
about the internals of the Expr class. Exprs know how to read themselves off a link.