コード例 #1
0
ファイル: StmtFor.cs プロジェクト: noobshow/SugarCpp
 public ForItemRange(string var, Expr from, Expr to, Expr by, ForItemRangeType style)
 {
     this.Var   = var;
     this.From  = from;
     this.To    = to;
     this.By    = by;
     this.Style = style;
 }
コード例 #2
0
ファイル: StmtFor.cs プロジェクト: Connect2Begin/SugarCpp
 public ForItemRange(string var, Expr from, Expr to, Expr by, ForItemRangeType style)
 {
     this.Var = var;
     this.From = from;
     this.To = to;
     this.By = by;
     this.Style = style;
 }