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