Numeric setting.
A simple class to hold and convert a numeric setting.
Namespace: Optimization
Assembly: Optimization (in Optimization.dll)
See Also: Inherited members from object.
⊟ Public Constructors
Create a new numeric setting. Create a new numeric setting with a value. Create a new numeric setting with a value. ⊟ Public Properties
Representation string . String representation of the numeric value. Value double . Numeric value.
⊟ NumericSetting Constructor
Create a new numeric setting.
public NumericSetting ()⊟ Remarks
Create a new numeric setting.⊟ Requirements
Namespace: Optimization
Assembly: Optimization (in Optimization.dll)
⊟ NumericSetting Constructor
Create a new numeric setting with a value.
public NumericSetting (double val)⊟ Parameters
- val
- The value.
⊟ Remarks
Create a new numeric setting with a value.⊟ Requirements
Namespace: Optimization
Assembly: Optimization (in Optimization.dll)
⊟ NumericSetting Constructor
Create a new numeric setting with a value.
public NumericSetting (string val)⊟ Parameters
- val
- The value.
⊟ Remarks
Create a new numeric setting with a value. The value is a string representation of a numeric value and can be a mathematical expression including constants such as pi.⊟ Requirements
Namespace: Optimization
Assembly: Optimization (in Optimization.dll)
⊟ Representation Property
String representation of the numeric value.
public string Representation { set; get; }⊟ Value
String representation of the numeric value.⊟ Remarks
Get the string representation of the numeric value.⊟ Requirements
Namespace: Optimization
Assembly: Optimization (in Optimization.dll)
⊟ Value Property
Numeric value.
public double Value { set; get; }⊟ Value
Numeric value.⊟ Remarks
Get the numeric value.⊟ Requirements
Namespace: Optimization
Assembly: Optimization (in Optimization.dll)