using System.Collections.Generic;
public static void Main()
string json = "{\"test\":[{\"test1\":5},{\"test2\": \"Y\"}]}";
dynamic templateData = JsonConvert.DeserializeObject<dynamic>(json);
string[] words = { "apple", "orange", "banana", "pear", "lemon" };
string[] firstarray, secondarray;
int mid = words.Length / 2;
firstarray = new string[mid];
secondarray = new string[words.Length - mid];
Array.Copy(words, 0, firstarray, 0, mid);
Array.Copy(words, mid, secondarray, 0, secondarray.Length);
Console.WriteLine(templateData.test[0].test1 - 1);
public List<Item> response { get; set; }
public string first_name { get; set; }
public string last_name { get; set; }
public string domain { get; set; }
public string photo_50 { get; set; }