Click or drag to resize

Expression  Conversion (Statement to Expression)

Implicit conversion of a Statement to an Expression.

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public static implicit operator Expression (
	Statement statement
)

Parameters

statement
Type: Nova.CodeDOMStatement
The Statement to be converted.

Return Value

Type: Expression
A generated SymbolicRef to the specified Statement.
Remarks
This allows declarations to be passed directly to any method expecting an Expression type without having to create a reference first.
See Also