Hi All,
I have the following JSON file. My question is, how to SerializeObject If I uncheck the checkbox on the app, it will update the 'checkboxvalue' to 'false' and updated the json file as well. thanks.
{
"ListItem": [
{
"Id": 1,
"Item": "Item1",
"CheckboxValue": "true"
},
{
"Id": 2,
"Item": "Item2",
"CheckboxValue": "True"
}
]
}



