.NET/Link API Version 1.7 USE FRAMES

Expr.Part Method (Int32[])

Extracts a part more than one level deep.

[Visual Basic]
Overloads Public Function Part( _
   ByVal ia As Integer() _
) As Expr
[C#]
public Expr Part(
   int[] ia
);

Parameters

ia
The index of the desired part.

Remarks

This version allows you to extract a part more than one level deep. Thus, e.Part(new int[] {3,4}) is like the Mathematica function Part[e, 3, 4] or e[[3,4]].

Exceptions

Exception Type Condition
IndexOutOfRangeException If the index is beyond the bounds of the expression.

See Also

Expr Class | Wolfram.NETLink Namespace | Expr.Part Overload List