Json.NET (Newtonsoft.Json) - Two 'properties' with same name? -
i'm coding in c# .net framework 3.5. i trying parse json jobject. the json follows: { "tbox": { "name": "smallbox", "length": 1, "width": 1, "height": 2 }, "tbox": { "name": "medbox", "length": 5, "width": 10, "height": 10 }, "tbox": { "name": "largebox", "length": 20, "width": 20, "height": 10 } } when try parse json jobject, jobject knows largebox. information smallbox , medbox lost. because interpreting "tbox" property, , property being overwritten. i receiving json service that's coded in delphi. i'm trying create c# proxy service. on delphi-side of things, "tbox" understood type of object being returned. inner properties ("name", "length...