If I have, say, 100 items that\'ll be stored in a dictionary, should I initialise it thus?
var myDictionary = new Dictionary(100); <
var myDictionary = new Dictionary(100);
The initial size is just a suggestion. For example, most hash tables like to have sizes that are prime numbers or a power of 2.