I have been using NewtonSoft JSON Convert library to parse and convert JSON string to C# objects. But now I have came across a really awkward JSON string and I am unable to
You can use this extensions:
public static class JsonExtensions { public static Dictionary ToObject(this string json) { return JsonConvert.DeserializeObject>(json); } public static string ToJson(this T obj) { return JsonConvert.SerializeObject(obj); } }