Table of Contents

Class ParsedExpressionConstant

Namespace
LfrlAnvil.Computable.Expressions.Constructs
Assembly
LfrlAnvil.Computable.Expressions.dll

Represents a constant construct.

public class ParsedExpressionConstant
Inheritance
ParsedExpressionConstant
Derived
Inherited Members

Constructors

ParsedExpressionConstant(Type, object?)

Creates a new ParsedExpressionConstant instance.

public ParsedExpressionConstant(Type type, object? value)

Parameters

type Type

Value's type.

value object

Underlying value.

Properties

Expression

Underlying Expression.

public ConstantExpression Expression { get; }

Property Value

ConstantExpression

Methods

Create<T>(T)

Creates a new ParsedExpressionConstant<T> instance.

[Pure]
public static ParsedExpressionConstant<T> Create<T>(T value)

Parameters

value T

Underlying value.

Returns

ParsedExpressionConstant<T>

New ParsedExpressionConstant<T> instance.

Type Parameters

T

value's type.