Interface IWhileStatement
While statement
Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
Assembly: Microsoft.ML.Probabilistic.Compiler.dll
Syntax
public interface IWhileStatement : IStatement
Properties
Body
Body of while statement
Declaration
IBlockStatement Body { get; set; }
Property Value
Type | Description |
---|---|
IBlockStatement |
Condition
Condition for while statement
Declaration
IExpression Condition { get; set; }
Property Value
Type | Description |
---|---|
IExpression |