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