Class SortedDictionary<TKey, TValue>.ValueCollection
Represents a value collection.
Inheritance
System.Object
SortedDictionary<TKey, TValue>.ValueCollection
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public sealed class ValueCollection : ICollection<TValue>, IEnumerable<TValue>, ICollection, IEnumerable
Constructors
ValueCollection(SortedDictionary<TKey, TValue>)
Creates a new value collection.
Declaration
public ValueCollection(SortedDictionary<TKey, TValue> dic)
Parameters
|
SortedDictionary<TKey, TValue>
dic
|
Properties
Count
Returns the count.
Declaration
public int Count { get; }
Property Value
|
System.Int32
|
Methods
CopyTo(TValue[], Int32)
Copies all values into this value collection.
Declaration
public void CopyTo(TValue[] array, int arrayIndex)
Parameters
|
TValue[]
array
|
|
System.Int32
arrayIndex
|
GetEnumerator()
Returns the enumerator.
Declaration
public SortedDictionary<TKey, TValue>.ValueCollection.Enumerator GetEnumerator()
Returns
|
SortedDictionary.ValueCollection.Enumerator<>
|