|
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.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public 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