Here is a sample using Json.NET:
#include "stdafx.h"
using namespace System;
using namespace Newtonsoft::Json;
ref class MyData
{
public: Guid ID;
public: array<double>^ Nodes;
};
int main(array<System::String ^> ^args)
{
String^ json = "{ \"ID\": \"{15DFD536-EC23-4624-803E-5AA719DC7A85}\", \"Nodes\": [ -0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0, -0.01, 0.01 ]}";
MyData^ data = JsonConvert::DeserializeObject<MyData^>(json);
Console::WriteLine("ID: {0}\nNodes: {1}", data->ID, String::Join(",", System::Linq::Enumerable::Cast<Object^>(data->Nodes)));
return 0;
}
Result:
ID: 15dfd536-ec23-4624-803e-5aa719dc7a85
Nodes: -0.01,0.01,0.01,0.01,0.01,0.01,0.01,0.01,0,-0.01,0.01