Gets the Parameter with the specified name.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public ReadOnly Property Item ( _ name As String _ ) As Parameter |
| C# |
|---|
public Parameter Item [ string name ] { get; } |
| C++ |
|---|
public: Parameter^ Item { Parameter^ get (String^ name); } |
Parameters
- name (System.String)
- The name of the parameter.
Value
The Parameter with the specified name.
Remarks
This method performs a linear search.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | A parameter named name does not exist in the collection. |