public LockStatement() { _body = new StatementCollection(this); }
public CatchClause() { _body = new StatementCollection(this); }
public SwitchCase() { _body = new StatementCollection(this); }
public SwitchStatement() { _cases = new StatementCollection <ISwitchCase>(this); }
public ForStatement() { _body = new StatementCollection(this); }