Is there a properties or methods which i could not perform using IDictionary object, where as it can be performed using Dictionary.
The other differences for the Dictionary and IDictionary are present in the below link.
A difference in style: IDictionary vs Dictionary
What is the difference between dictionary(Of String, String) and IDictionary(Of String, String)
IDictionary<string, string> versus Dictionary<string, string>
I want to know what are all the properties and methods which are exposed under Dictionary, and hidden under IDictionary.
Thanks in Advance,
Arun