Click or drag to resize
JsonArrayRemove Method
Removes the first occurrence of a specific object from the JsonArray.

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public bool Remove(
	JsonValue item
)

Parameters

item
Type: Dextronet.JsonieJsonValue
The object to remove from the JsonArray. The value can be null.

Return Value

Type: Boolean
true if item is successfully removed; otherwise, false. This method also returns false if item was not found in the array.

Implements

ICollectionTRemove(T)
See Also