[]
        
(Showing Draft Content)

C1.WPF.Binding.Expression.op_Implicit

implicit operator Operator

implicit operator string(Expression)

Evaluates the expression and returns the result converted to a string.

Declaration
public static implicit operator string(Expression x)
Parameters
Type Name Description
Expression x

Expression to evaluate and convert.

Returns
Type Description
string

Expression value as a string.

implicit operator double(Expression)

Evaluates the expression and returns the result converted to a double.

Declaration
public static implicit operator double(Expression x)
Parameters
Type Name Description
Expression x

Expression to evaluate and convert.

Returns
Type Description
double

Expression value as a double.

implicit operator bool(Expression)

Evaluates the expression and returns the result converted to a Boolean value.

Declaration
public static implicit operator bool(Expression x)
Parameters
Type Name Description
Expression x

Expression to evaluate and convert.

Returns
Type Description
bool

Expression value as a Boolean value.

implicit operator DateTime(Expression)

Evaluates the expression and returns the result converted to a DateTime value.

Declaration
public static implicit operator DateTime(Expression x)
Parameters
Type Name Description
Expression x

Expression to evaluate and convert.

Returns
Type Description
DateTime

Expression value as a DateTime value.