Implicit Operator
Overloads
| Implicit(Double to ValueExpression) | Implicit type conversion from System.Double | |
| Implicit(String to ValueExpression) | Implicit type conversion from System.String | |
| Implicit(ValueExpression to String) | Implicit type conversion to System.String | |
| Implicit(ValueExpression to Double) | Implicit type conversion to System.Double | 
Implicit(Double to ValueExpression)
Implicit type conversion from System.Double
Declaration
      public static implicit operator ValueExpression(double value)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Double | value | The value to convert | 
Returns
| Type | Description | 
|---|---|
| ValueExpression | The converted result | 
Implicit(String to ValueExpression)
Implicit type conversion from System.String
Declaration
      public static implicit operator ValueExpression(string value)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | value | The value to convert | 
Returns
| Type | Description | 
|---|---|
| ValueExpression | The converted result | 
Implicit(ValueExpression to String)
Implicit type conversion to System.String
Declaration
      public static implicit operator string (ValueExpression value)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| ValueExpression | value | The object to convert | 
Returns
| Type | Description | 
|---|---|
| System.String | The converted result | 
Implicit(ValueExpression to Double)
Implicit type conversion to System.Double
Declaration
      public static implicit operator double (ValueExpression value)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| ValueExpression | value | The object to convert | 
Returns
| Type | Description | 
|---|---|
| System.Double | The converted result |