コード例 #1
0
ファイル: RewriteService.cs プロジェクト: bernd5/LinqRewrite
 public static ForStatementSyntax GetForStatement(RewriteDesign design, LocalVariable indexerVariable, ValueBridge max, ValueBridge increment, List <IStatementSyntax> loopContent)
 => ForStatement(
     null,
     default,
     indexerVariable.LThan(max),
     CreateSeparatedExpressionList(indexerVariable.AddAssign(increment)),
     GetBody(design, loopContent));