Example #1
0
 public LockStatement()
 {
     _body = new StatementCollection(this);
 }
Example #2
0
 public CatchClause()
 {
     _body = new StatementCollection(this);
 }
Example #3
0
 public SwitchCase()
 {
     _body = new StatementCollection(this);
 }
Example #4
0
 public SwitchStatement()
 {
     _cases = new StatementCollection <ISwitchCase>(this);
 }
Example #5
0
 public ForStatement()
 {
     _body = new StatementCollection(this);
 }