I just can't figure this one out. Tried already with JsonConvert.SerializeObject(item) and I got a weird string as well.
How can I put out of value out of this stringified string?
"{\"value\":[\"18\"]}"
Edit@
This is where I stringify it:
var data = new FormData();
data.append('cates', JSON.stringify(toSend));
and here is what output I get from model > props list
https://gyazo.com/b9a6f212345b854796af3d80e4169a23
@deserializing
foreach (var item in data.cates)
{
var l = JsonConvert.DeserializeObject(item);
}