Click or drag to resize

ValueCollection Methods

The RankedDictionaryTKey, TValueValueCollection type exposes the following members.

Methods
  NameDescription
Public methodCopyTo
Copies values to a supplied array, starting as the supplied position.
Public methodElementAt
Gets the value at the supplied index.
Public methodElementAtOrDefault
Gets the value at the supplied index or the default if the index is out of range.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodFirst
Gets the value of the element with the minimum key in the dictionary per the comparer.
Public methodGetEnumerator
Gets an enumerator that iterates thru the collection.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf
Gets the index of the first element with the supplied value.
Public methodLast
Gets the value of the element with the maximum key in the dictionary per the comparer.
Public methodReverse
Returns an enumerator that iterates thru the dictionary values in reverse key order.
Public methodCode exampleSkip
Bypasses a supplied number of values and yields the remaining values.
Public methodSkipWhile(FuncTValue, Boolean)
Bypasses values as long as a supplied condition is true and yields the remaining values.
Public methodSkipWhile(FuncTValue, Int32, Boolean)
Bypasses values as long as a supplied index-based condition is true and yields the remaining values.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate methodICollectionTValueAdd
This implementation always throws a NotSupportedException.
Explicit interface implementationPrivate methodICollectionTValueClear
This implementation always throws a NotSupportedException.
Explicit interface implementationPrivate methodICollectionTValueContains
Determines whether the dictionary contains the supplied value.
Explicit interface implementationPrivate methodICollectionCopyTo
Copies values to a supplied array, starting at the supplied position.
Explicit interface implementationPrivate methodIEnumerableTValueGetEnumerator
Gets an enumerator that iterates thru the collection.
Explicit interface implementationPrivate methodIEnumerableGetEnumerator
Gets an enumerator that iterates thru the collection.
Explicit interface implementationPrivate methodICollectionTValueRemove
This implementation always throws a NotSupportedException.
Top
See Also