JsonArrayIndexOf Method
Determines the index of a specific value in the
JsonArray.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public int IndexOf(
JsonValue item
)
Public Function IndexOf (
item As JsonValue
) As Integer
public:
virtual int IndexOf(
JsonValue item
) sealed
abstract IndexOf :
item : JsonValue -> int
override IndexOf :
item : JsonValue -> int
- item JsonValue
- The JsonValue to locate in the JsonArray.
Int32The index of
item if found in the array; otherwise, -1.
IListTIndexOf(T)