A List has separate properties for getting the Count and its Capacity. Dictionaries, like all collections, have the Count property too, and it has a capacity because it has several constructors that allow you to specify it and the documentation for the Add method mentions it. However, i don't see any way of querying the Dictionary for what its current capacity is.
Even if there is no way of getting a Dictionary's current capacity, is there any way to predict when a reallocation might occur?