using Newtonsoft.Json.Linq;
public static void Main()
{ ""General"" : ""At this time we do not have any frequent support requests."" },
{ ""Support"" : ""For support inquires, please see our support page."" }
JArray a = JArray.Parse(json);
foreach (JObject o in a.Children<JObject>())
foreach (JProperty p in o.Properties())
string value = (string)p.Value;
Console.WriteLine(name + " -- " + value);