コード例 #1
0
 public CodegenBlock Decrement(CodegenExpressionRef expression)
 {
     CheckClosed();
     statements.Add(new CodegenStatementExpression(CodegenExpressionBuilder.Decrement(expression)));
     return this;
 }
コード例 #2
0
 public CodegenBlock Decrement(string @ref)
 {
     CheckClosed();
     statements.Add(new CodegenStatementExpression(CodegenExpressionBuilder.Decrement(@ref)));
     return this;
 }