IReadOnlyDictionary<TKey,TValue>.Values Property
Definition
Gets an enumerable collection that contains the values in the read-only dictionary.
public:
property System::Collections::Generic::IEnumerable<TValue> ^ Values { System::Collections::Generic::IEnumerable<TValue> ^ get(); };
public System.Collections.Generic.IEnumerable<TValue> Values { get; }
member this.Values : seq<'Value>
Public ReadOnly Property Values As IEnumerable(Of TValue)
Property Value
- IEnumerable<TValue>
An enumerable collection that contains the values in the read-only dictionary.
Remarks
The order of the values in the enumerable collection is unspecified, but the implementation must guarantee that the values are in the same order as the corresponding keys in the enumerable collection that is returned by the Keys property.