|
DictionaryListTKey, TValueIndexOfValue Method
|
Searches for the specified value and returns the zero-based index of the first occurrence within the entire
DictionaryListTKey, TValue.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.239-beta+5928cebde0dd955df84e791f5ea67acbd192773e
Syntaxpublic int IndexOfValue(
TValue value
)
Public Function IndexOfValue (
value As TValue
) As Integer
public:
int IndexOfValue(
TValue value
)
member IndexOfValue :
value : 'TValue -> int
function IndexOfValue(value);
View SourceParameters
- value TValue
- The value to locate in the DictionaryListTKey, TValue. The value can be null for reference types.
Return Value
Int32The zero-based index of the first occurrence of value within the entire
DictionaryListTKey, TValue, if found; otherwise, -1.
See Also