Answers for "Cannot deserialize the current JSON object (e.g. {“name”:“value”})"

0

Cannot deserialize the current JSON object (e.g. {“name”:“value”})

using Newtonsoft.Json.Linq;

JObject obj = JObject.Parse(jsonString);
JArray arr = (JArray)obj["logInResult"];
IList<JClass> student= arr.ToObject<IList<JClass>>();

return View(student);
Posted by: Guest on August-03-2021

Code answers related to "Cannot deserialize the current JSON object (e.g. {“name”:“value”})"

Browse Popular Code Answers by Language