IronPython.Compiler.Ast.WhileStatement.WhileStatement C# (CSharp) Метод

WhileStatement() публичный Метод

public WhileStatement ( Expression test, Statement body, Statement else_ ) : Microsoft.Scripting
test Expression
body Statement
else_ Statement
Результат Microsoft.Scripting
        public WhileStatement(Expression test, Statement body, Statement else_) {
            _test = test;
            _body = body;
            _else = else_;
        }