I have a List containing a bunch of strings that can occur more than once. I would like to take this list and build a dictionary of the list items as the key and the count
One idea would be to give the dictionary a default value of zero, so you wouldn't have to special case the first occurrence.