Gets an ICollection containing the values in the Dictionary.
[Visual Basic] Overridable Public ReadOnly Property Values As ICollection [C#] public ICollection Values {virtual get;} [C++] public: __property virtual ICollection* get_Values(); [JScript] public function get Values() : ICollection;
An ICollection containing the values in the Dictionary.
The order of the values in the ICollection is unspecified, but it is the same order as the associated keys in the ICollection returned by the Keys method.
Changes to the Dictionary will continue to be reflected in the returned ICollection. It is not a static copy.
Dictionary Class | Dictionary Members | System.Collections Namespace | ICollection | Keys