Search Results for

    Show / Hide Table of Contents

    Interface IBinaryExpression

    Binary expression

    Inherited Members
    IExpression.GetExpressionType()
    Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
    Assembly: Microsoft.ML.Probabilistic.Compiler.dll
    Syntax
    public interface IBinaryExpression : IExpression

    Properties

    Left

    Expression to the left of the operator

    Declaration
    IExpression Left { get; set; }
    Property Value
    Type Description
    IExpression

    Operator

    The operator

    Declaration
    BinaryOperator Operator { get; set; }
    Property Value
    Type Description
    BinaryOperator

    Right

    Expression to the right of the operator

    Declaration
    IExpression Right { get; set; }
    Property Value
    Type Description
    IExpression
    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.