Tagged Questions

8
votes
6answers
3k views

Default capacity of StringBuilder

What is the default capacity of a StringBuilder? And when should (or shouldn't) the default be used?
6
votes
6answers
2k views

Should a .NET generic dictionary be initialised with a capacity equal to the number of items it will contain?

If I have, say, 100 items that'll be stored in a dictionary, should I initialise it thus? var myDictionary = new Dictionary<Key, Value>(100); My understanding is that the .NET dictionary ...
3
votes
2answers
164 views

How does StringBuilder's capacity change?

When I have an empty StringBuilder with a capacity of 5 and I write "hello, world!" to it, does the C# standard specify the new capacity of the StringBuilder? I have a vague memory that it's twice the ...
0
votes
1answer
99 views

Why does StringBuilder have a default capacity of 16 characters?

Why does StringBuilder have a default capacity of 16 characters? Is this some kind of optimization? StringBuilder builder = new StringBuilder(); Console.WriteLine("builder capacity: '{0}'", ...