My source data is in the form of
[["value11", "value12"],["value13", "value14"]]
[["value21", "value22"]]
[["value31", "value32"],["value33", "value34"], ["value35", "value36"]]
and not
[["Key1" : "value11", "Key2" : "value12"],["Key1" : "value13", "Key2" : "value14"]]
[["Key1" : "value21", "Key2" : "value22"]]
[["Key1" : "value31", "Key2" : "value32"],["Key1" : "value33", "Key2" : "value34"], ["Key1" : "value35", "Key2" : "value36"]]
and this is a large file. JSON.Net is not able to parse this. Is there any parser already available? From here, I can use Regex to replace and format the data but I would rather not meddle the data.