Inserts an observation to the variable at the specified index.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public MustOverride Sub Insert ( _
	index As Integer, _
	value As Object _
)
C#
public abstract void Insert (
	int index,
	Object value
)
C++
public:
virtual void Insert (
	int index, 
	Object^ value
) abstract

Parameters

index (System.Int32)
The zero-based index at which value should be inserted.
value (System.Object)
The observation to insert in the list.