Skip to content

Instantly share code, notes, and snippets.

@cryks
Created October 18, 2010 13:59
Show Gist options
  • Select an option

  • Save cryks/632256 to your computer and use it in GitHub Desktop.

Select an option

Save cryks/632256 to your computer and use it in GitHub Desktop.
const string chars = "0123456789";
var ret = chars.Aggregate(new StringBuilder(), (sb, c) => sb.AppendFormat("{0} ", c));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment