Budni пишет: Как такое считывать?
CODE:string Json="[" +
"{" +
"^"row^": 0," +
"^"col^": 0," +
"^"center^": [" +
"80," +
"124" +
"]" +
"}," +
"{" +
"^"row^": 0," +
"^"col^": 1," +
"^"center^": [" +
"240," +
"124" +
"]" +
"}," +
"{" +
"^"row^": 1," +
"^"col^": 1," +
"^"center^": [" +
"1840," +
"938" +
"]" +
"}" +
"]";
messagebox (Json);
//Допилим формат до нужного
Json="{^"WWWWWWWWWW^": "+Json+"}";
messagebox (Json);
parserjson(Rez_Json, Json);
messagebox(Rez_Json.WWWWWWWWWW[0].row);
messagebox(Rez_Json.WWWWWWWWWW[1].center[1]);
|