interface IDictionary<TKey,TValue>
in global :: System . Collections . Generic
Represents a generic collection of key/value pairs.
TKeyThe type of keys in the dictionary.TValueThe type of values in the dictionary.
public ICollection<TKey> Keys { get; }
Gets an containing the keys of the .
- Returns An containing the keys of the object that implements .
public ICollection<TValue> Values { get; }
Gets an containing the values in the .
- Returns An containing the values in the object that implements .
public TValue Item { get; set; }
😔 No documentation found.
public bool ContainsKey( TKey key )
😔 No documentation found.
public void Add( TKey key, TValue value )
😔 No documentation found.
public bool Remove( TKey key )
😔 No documentation found.
public bool TryGetValue( TKey key, ref TValue value )
😔 No documentation found.