Removes the first occurrence of a specific object from the JsonArray.
Namespace: Dextronet.JsonieAssembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntaxpublic bool Remove(
JsonValue item
)
Public Function Remove (
item As JsonValue
) As Boolean
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