Class HashSetDictionary<TKey, TValue>.ValueCollection
Represents the collection of values in a HashSetDictionary<TKey, TValue>.
Namespace: Singulink.Collections
Assembly: Singulink.Collections.dll
Syntax
public sealed class HashSetDictionary<TKey, TValue>.ValueCollection : ICollection<TValue>, IReadOnlyCollection<TValue>, IEnumerable<TValue>, IEnumerableProperties
| Name | Description | 
|---|---|
| Count | Gets the number of values in the dictionary across all keys. | 
Methods
| Name | Description | 
|---|---|
| Contains(TValue) | Returns a value indicating whether any of the value sets in the dictionary contain the specified value. | 
| CopyTo(TValue[], int) | Copies all the values in the dictionary to an array starting at the specified array index. | 
| GetEnumerator() | Returns an enumerator that iterates through the values in this collection. | 
Explicit Interface Implementations
| Name | Description | 
|---|---|
| ICollection<TValue>.Add(TValue) | Not supported. | 
| ICollection<TValue>.Clear() | Not supported. | 
| ICollection<TValue>.IsReadOnly | Gets a value indicating whether this collection is read-only. Always returns true. | 
| ICollection<TValue>.Remove(TValue) | Not supported. | 
| IEnumerable<TValue>.GetEnumerator() | Returns an enumerator that iterates through the values in this collection. | 
| IEnumerable.GetEnumerator() | Returns an enumerator that iterates through the values in this collection. | 
