Class BinaryExpression
public sealed record BinaryExpression : Expression, IEquatable<Expression>, IEquatable<BinaryExpression>
- Inheritance
-
BinaryExpression
- Implements
- Inherited Members
Constructors
BinaryExpression(Expression, string, Expression, SourceSpan)
public BinaryExpression(Expression Left, string Operator, Expression Right, SourceSpan Span)
Parameters
LeftExpressionOperatorstringRightExpressionSpanSourceSpan
Properties
Left
public Expression Left { get; init; }
Property Value
Operator
public string Operator { get; init; }
Property Value
Right
public Expression Right { get; init; }