Open sandboxFocus

Method RunTime

RunTime<T>(T?)

Converts a compile-value into run-time value by serializing the compile-time value into a some syntax that will evaluate, at run time, to the same value as at compile time.

Declaration
[CompileTime(true, null)]
public static T? RunTime<T>(T? value)
Parameters
Type Name Description
T value

A compile-time value.

Returns
Type Description
T

A value that is structurally equivalent to the compile-time value.

Type Parameters
Name Description
T
See Also