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