ExprPart(Int32) Method

Extracts a part more than one level deep.

Definition

Namespace: Wolfram.NETLink
Assembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
C#
public Expr Part(
	int[] ia
)

Parameters

ia  Int32
The index of the desired part.

Return Value

Expr

Remarks

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]].

Exceptions

IndexOutOfRangeExceptionIf the index is beyond the bounds of the expression.

See Also