Search Results for

    Show / Hide Table of Contents

    Interface IConditionStatement

    Condition statement

    Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
    Assembly: Microsoft.ML.Probabilistic.Compiler.dll
    Syntax
    public interface IConditionStatement : IStatement

    Properties

    Condition

    If condition

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

    Else

    Else block of statements

    Declaration
    IBlockStatement Else { get; set; }
    Property Value
    Type Description
    IBlockStatement

    Then

    Then block of statements

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