How can I parse JSON with C#?

I am assuming you are not using Json.NET (Newtonsoft.Json NuGet package). If this the case, then you should try it. It has the following features: LINQ to JSON The JsonSerializer for quickly converting your .NET objects to JSON and back again Json.NET can optionally produce well formatted, indented JSON for debugging or display Attributes like … Read more

De-serializing json format string

Your class structure is wrong. The json string contains a list of face_list not a single object. Furthermore your current face_list class does not contain any properties just two nested class definitions which will not hold any values. Correct structure: public class FaceDetect { public int age { get; set; } public int beauty { … Read more