Gets the value of the variable corresponding to the specified index.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Property Item ( _ index As Integer _ ) As Object |
| C# |
|---|
public Object Item [ int index ] { get; set; } |
| C++ |
|---|
public: virtual Object^ Item { Object^ get (int index) sealed; void set (, Object^ value) sealed; } |
Parameters
- index (System.Int32)
- The zero-based index of the value to be retrieved.
Value
The value of the observation at the specified index.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than zero or greater than the number of observations. |