.NET/Link API Version 1.7 USE FRAMES

MathLinkFactory.CreateMathLink Method

Creates a link. Use this method to create an IMathLink object.

Overload List

Launches the default Mathematica kernel and returns an IMathLink link to it.

public static IMathLink CreateMathLink();

Creates a link based on MathLink parameters supplied as a single string.

public static IMathLink CreateMathLink(string);

Creates a link based on MathLink parameters supplied as an argv-type array of strings.

public static IMathLink CreateMathLink(string[]);

Remarks

Most programmers will want to use the CreateKernelLink method instead, so they can work with the higher-level IKernelLink interface. Use CreateMathLink only if you want a link that does not attach to a Mathematica kernel.

See Also

MathLinkFactory Class | Wolfram.NETLink Namespace | CreateKernelLink