interface IReadOnlyDictionary<TKey,TValue>
in global :: System . Collections . Generic
Represents a generic read-only collection of key/value pairs.
TKeyThe type of keys in the read-only dictionary.TValueThe type of values in the read-only dictionary.
public IEnumerable<TKey> Keys { get; }
Gets an enumerable collection that contains the keys in the read-only dictionary.
- Returns An enumerable collection that contains the keys in the read-only dictionary.
public IEnumerable<TValue> Values { get; }
Gets an enumerable collection that contains the values in the read-only dictionary.
- Returns An enumerable collection that contains the values in the read-only dictionary.
public bool ContainsKey( TKey key )
😔 No documentation found.
public bool TryGetValue( TKey key, ref TValue value )
😔 No documentation found.
public TValue Item { get; }
😔 No documentation found.