using Newtonsoft.Json.Linq;
string str = "{'test': ['(0,0,0)'],'test2': ['(0,0,0)']}";
JObject json = JObject.Parse(str);
Console.WriteLine(json["test"][0]); // (0,0,0)
Console.WriteLine(json["test2"][0]); // (0,0,0)