ModelTermCollection.Item Property

Gets or sets the element at the specified index.

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public ModelTerm this[
	int index
] { get; set; }

Parameters

index  Int32
The zero-based index of the element to get or set.

Return Value

ModelTerm
The element at the specified index.

Implements

IList<T>.Item[Int32]

Exceptions

ArgumentOutOfRangeExceptionindex is not a valid index in the IList<T>.
NotSupportedExceptionThe property is set and the IList<T> is read-only.

See Also