Table of Contents

Class ParsedExpressionTypeConverter

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

Represents a type converter construct.

public class ParsedExpressionTypeConverter
Inheritance
ParsedExpressionTypeConverter
Derived
Inherited Members

Constructors

ParsedExpressionTypeConverter(Type, Type?)

Creates a new ParsedExpressionTypeConverter instance.

public ParsedExpressionTypeConverter(Type targetType, Type? sourceType = null)

Parameters

targetType Type

Target type.

sourceType Type

Optional source type. Equal to null by default.

Properties

SourceType

Optional source type.

public Type? SourceType { get; }

Property Value

Type

TargetType

Target type.

public Type TargetType { get; }

Property Value

Type

Methods

CreateConversionExpression(Expression)

Creates an expression.

[Pure]
protected virtual Expression CreateConversionExpression(Expression operand)

Parameters

operand Expression

Argument.

Returns

Expression

New Expression.

TryCreateFromConstant(ConstantExpression)

Attempts to create an expression from a constant.

[Pure]
protected virtual Expression? TryCreateFromConstant(ConstantExpression operand)

Parameters

operand ConstantExpression

Constant argument.

Returns

Expression

New Expression or null when it could not be created.