JsonArrayContains Method
Determines whether the
JsonArray contains the specific
item.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public bool Contains(
JsonValue item
)
Public Function Contains (
item As JsonValue
) As Boolean
public:
virtual bool Contains(
JsonValue item
) sealed
abstract Contains :
item : JsonValue -> bool
override Contains :
item : JsonValue -> bool
- item JsonValue
- The JsonValue to locate in the JsonArray.
Boolean if
item is found in the
JsonArray; otherwise,
.
ICollectionTContains(T)