There is probably silly but I am trying to remove a value in json. I have a json object and want to remove a line.
I am trying to use Invoke method,
TargetObject: blahjson
Method: Remove
it’s not the json giving err, it is saying the jObject does not have a public instance method named Remove matching the parameter types, generic type arguments, …
Stuck again, now I am trying to remove a key value from nested json
I can print it out using this write
outblah(“Towel”)(0)(“IsDirty”).ToString
I tried to make the target object as outblah(“Towel”)(0) and pass the params as (“IsDirty”)
I am getting this msg jtoken does not have a public instance named Remove
Tried all variations, like Target to be outblah and params to be towel as string and IsDirty as Jobject, still get err