Class CodeBinary
public sealed class CodeBinary : ICodeExpression, ICodeElement
- Inheritance
-
CodeBinary
- Implements
- Extension Methods
Constructors
CodeBinary(ICodeExpression, BinaryOperation, ICodeExpression)
public CodeBinary(ICodeExpression left, BinaryOperation operation, ICodeExpression right)
Parameters
left
ICodeExpressionoperation
BinaryOperationright
ICodeExpression
Properties
Left
Left-side operand.
public ICodeExpression Left { get; }
Property Value
Operation
Operation type.
public BinaryOperation Operation { get; }
Property Value
Right
Right-side operand.
public ICodeExpression Right { get; }