FrozenDictionary<TKey,TValue>.Values Property

Definition

Gets a collection containing the values in the dictionary.

public:
 property System::Collections::Immutable::ImmutableArray<TValue> Values { System::Collections::Immutable::ImmutableArray<TValue> get(); };
public System.Collections.Immutable.ImmutableArray<TValue> Values { get; }
member this.Values : System.Collections.Immutable.ImmutableArray<'Value>
Public ReadOnly Property Values As ImmutableArray(Of TValue)

Property Value

ImmutableArray<TValue>

Remarks

The order of the values in the dictionary is unspecified, but it is the same order as the associated keys returned by the Keys property.

Applies to