I'm having an issue looping some JSON code, my JSON looks like:
{
"mode_1": [
"line_1",
"line_2",
"etc ..."
]
}
I have tried with my code:
var json = Helpers.GetJsonTemplateToUse(_currentSite, "site_json_1");
dynamic array = JsonConvert.DeserializeObject(json["mode_1"]);
foreach (var macro in array)
{
Helpers.ReturnMessage(macro);
}
The json
var queries and returns the JSON code to parse, then DeserializeObject
and foreach
but i think i have done it wrong, I don't get any erros as such but the ReturnMessage
function does not output any lines, any help would be appreciated.
question from:
https://stackoverflow.com/questions/65892199/json-code-not-parsing-also-not-showing-any-errors 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…