ExprPart(Int32) Method
Extracts a part more than one level deep.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
public Expr Part(
int[] ia
)
Public Function Part (
ia As Integer()
) As Expr
public:
Expr^ Part(
array<int>^ ia
)
member Part :
ia : int[] -> Expr
- ia Int32
- The index of the desired part.
Expr
This version allows you to extract a part more than one level deep. Thus, e.Part(new int[] {3,4}) is like the
Wolfram Language function Part[e, 3, 4] or e[[3,4]].