JsonArrayRemove Method
Removes the first occurrence of the specific
item from the
JsonArray.
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public bool Remove(
JsonValue item
)
Public Function Remove (
item As JsonValue
) As Boolean
public:
virtual bool Remove(
JsonValue item
) sealed
abstract Remove :
item : JsonValue -> bool
override Remove :
item : JsonValue -> bool
- item JsonValue
- The JsonValue to remove from the JsonArray.
Boolean if
item was successfully removed from the
JsonArray; otherwise,
.
ICollectionTRemove(T)