Click or drag to resize

Expression  Conversion (UInt64 to Expression)

Implicit conversion of a ulong to an Expression (actually, a Literal).

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

Parameters

value
Type: SystemUInt64
The ulong to be converted.

Return Value

Type: Expression
A generated Literal for the specified ulong.
Remarks
This allows ulongs to be passed directly to any method expecting an Expression type without having to do a new Literal(value).
See Also