Gets a SystemParameter.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public double this[
	string ParameterName
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	ParameterName As String _
) As Double
Visual C++
public:
property double default[String^ ParameterName] {
	double get (String^ ParameterName);
}

Parameters

ParameterName
Type: System..::.String
Parameter name to retrieve.

Return Value

The value associated with this system parameter.

Remarks

If this parameter does not exist, an exception is thrown. Use the Contains function to determine whether or not the parameter exists.

See Also