Interface IListDictionary<TKey, TValue>
Represents a collection of keys mapped to a list of values per key.
Inherited Members
Namespace: Singulink.Collections
Assembly: Singulink.Collections.dll
Syntax
public interface IListDictionary<TKey, TValue> : ICollectionDictionary<TKey, TValue, IList<TValue>>, IReadOnlyCollection<KeyValuePair<TKey, IList<TValue>>>, IEnumerable<KeyValuePair<TKey, IList<TValue>>>, IEnumerableType Parameters
| Name | Description | 
|---|---|
| TKey | The type of the keys in the dictionary. | 
| TValue | The type of the values in the dictionary. | 
