I have read that internal implementation of StringBuilder has changed significantly in .NET4.0:
StringBuilder growing over 85k and moving to LOH?
How does StringBuilder's capacity change?
What is the implication of these changes for specifying capacity during SB creation?
Is it still of benefit to do this?
Dim BigString As New System.Text.StringBuilder(500000)
For Each ...
BigString.Append("some text")
Next