Click or drag to resize

DictionaryList<TKey, TValue> .IndexOfValue Method

Searches for the specified value and returns the zero-based index of the first occurrence within the entire DictionaryList<TKey, TValue>.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.239-beta+5928cebde0dd955df84e791f5ea67acbd192773e
Syntax
public int IndexOfValue(
	TValue value
)
View Source

Parameters

value  TValue
The value to locate in the DictionaryList<TKey, TValue>. The value can be null for reference types.

Return Value

Int32
The zero-based index of the first occurrence of value within the entire DictionaryList<TKey, TValue>, if found; otherwise, -1.
See Also