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