Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 7, 2019 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/81ded5a5b86c42f2de19bed0d64919d2 to your computer and use it in GitHub Desktop.
Save IntegerMan/81ded5a5b86c42f2de19bed0d64919d2 to your computer and use it in GitHub Desktop.
StringBuilder sb = new StringBuilder();
for (int i = 0; i < 1000; i++) {
sb.Append(i);
}
return sb.ToString(); // Actually builds the final string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment