Here you can't parse your json into a JArray. But you can use the JsonObject just like an array if you want to keep your json string.
Here is some bad code, but it can give you some ideas, i assume that the number in your json string is some ID and start to 0 to X :
//Your json, the id is the value 0..1..2
string json = "{\"0\": [-26.224264705882351, 0.67876838235294112, -38.031709558823529, 46.201555361781679],
\"1\": [-26.628676470588236, 2.4784007352941178, -37.377297794117645, 45.959670050709867]}";
//Create json object
JObject myjson = JObject.Parse(json);
//Get the number of different object that you want to get from this json
int count = getCountMyJson(myjson);
//Create your Jarray
JArray nameArray = new JArray();
//Get the value from the json, each different value , start to 0 and going to the maximum value
for (int i = 0; i < count; i++)
{
if(myjson[i+""] != null)
nameArray.Add(myjson[i + ""]);
}
//Now you have a JArray that match all your json value ( here the object 0 and 1)
Here is a bad function ( bad code, while is disgusting) but it works and you can understand what you can do with it ( assuming the id is 0 to XXX ) :
public static int getCountMyJson(JObject json)
{
int i = 0;
while(json.GetValue(i+"") != null)
{ i++; }
return i;
}