Struct ParsedExpressionBinaryOperatorInfo
- Namespace
- LfrlAnvil.Computable.Expressions.Internal
- Assembly
- LfrlAnvil.Computable.Expressions.dll
Represents an information about a binary operator construct.
public readonly struct ParsedExpressionBinaryOperatorInfo
- Inherited Members
Constructors
ParsedExpressionBinaryOperatorInfo(Type, Type, Type)
Creates a new ParsedExpressionBinaryOperatorInfo instance.
public ParsedExpressionBinaryOperatorInfo(Type operatorType, Type leftArgumentType, Type rightArgumentType)
Parameters
operatorType
TypeConstruct's type.
leftArgumentType
TypeLeft argument's type.
rightArgumentType
TypeRight argument's type.
Properties
LeftArgumentType
Left argument's type.
public Type LeftArgumentType { get; }
Property Value
OperatorType
Construct's type.
public Type OperatorType { get; }
Property Value
RightArgumentType
Right argument's type.
public Type RightArgumentType { get; }
Property Value
Methods
ToString()
Returns a string representation of this ParsedExpressionBinaryOperatorInfo instance.
[Pure]
public override string ToString()
Returns
- string
String representation.