When sprintf and String.concat is either too slow or not really what is needed, one can use System.Text.StringBuilder. This snippet makes working with StringBuilder much more convenient and the resulting code more succint.
1 people like thisPosted: 12 years ago by Bent Rasmussen
See http://stackoverflow.com/questions/18595597/is-using-a-stringbuilder-a-right-thing-to-do-in-f
1 people like thisPosted: 11 years ago by Ramon Snir
F# Impletementation of StringBuilderCache
1 people like thisPosted: 2 years ago by Pim
A bit of syntax eye candy for your string building code.
10 people like thisPosted: 12 years ago by Eirik Tsarpalis
We can use power of computation expressions and InlineIfLambda to get nice syntax and mutable index tracking for allocating strings
3 people like thisPosted: 2 years ago by Evgeniy Andreev
Uses StringBuilder to achieve performance.
2 people like thisPosted: 1 month ago by shazmodan