using Newtonsoft.Json.Linq;
public static void Main()
" \"Property 1\": 154600," +
" \"Property 2\": true," +
" \"Property 3\": 5340," +
" \"Property 4\": 54634" +
" \"Property 1\": 5436," +
" \"Property 2\": false," +
" \"Property 3\": 45678769," +
" \"Property 4\": 2342342" +
var jobj = JObject.Parse(sb);
foreach (var obj in jobj){
Console.WriteLine(obj.GetType().ToString());
Console.WriteLine(obj.ToString());