.NET/Link API Version 1.7 USE FRAMES

NETLinkConstants.PACKAGE_CONTEXT Field

The Mathematica package context for the .NET/Link support functions.

[Visual Basic]
Public Const PACKAGE_CONTEXT As String = "NETLink`"
[C#]
public const string PACKAGE_CONTEXT = "NETLink`";

Remarks

Using this is preferable to hard-coding "NETLink`" in your code if you need to explicitly load the .NET/Link package file.

BAD:  ml.Evaluate("Needs[\"NETLink`\"]");
GOOD: ml.Evaluate("Needs[\"" + NETLinkConstants.PACKAGE_CONTEXT + "\"]");

See Also

NETLinkConstants Class | Wolfram.NETLink Namespace