Apparently there is no generic version of a HybridDictionary.
Why is this? I always considered it to be a best-practice when you needed to store items in a dictionary, but didn't know how many items were going to be in it.
Maybe because the Dictionary<> has better performance and less overhead than the HybridDictionary, even with only a few elements in it.
Or is there a new best-practice I'm not aware of?