CS.LOOP.STR.CONCAT

在循环中使用字符串串联会浪费时间和内存。请使用 StringBuilder 替代。

示例 1

复制
  class Foo {
      public string Build(int n, string x) {
          string res = "";
          for (int i = 0; i < n; i++) {
              res += x;       // defect
          }
          return res;
      }
  }