using System.Collections.Generic;
public static void Main()
""order_id"": 4923887462,
""location_id"": 60008494,
""issued"": ""2017-07-25T16:40:18Z"",
""order_id"": 4926414947,
""location_id"": 60008494,
""issued"": ""2017-07-29T06:47:29Z"",
""order_id"": 4927013184,
""location_id"": 60008494,
""issued"": ""2017-07-29T22:26:05Z"",
""order_id"": 4927082974,
""location_id"": 60008494,
""issued"": ""2017-07-30T00:22:36Z"",
MarketOrderList obj = JsonConvert.DeserializeObject<MarketOrderList>(json);
foreach (MarketOrder order in obj.MarketOrder)
Console.WriteLine("order_id: " + order.order_id);
Console.WriteLine("price: " + order.price);
Console.WriteLine("issued: " + order.issued);
[Newtonsoft.Json.JsonProperty(PropertyName = "duration")]
public int duration { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "is_buy_order")]
public bool is_buy_order { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "issued")]
public string issued { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "location_id")]
public int location_id { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "min_volume")]
public int min_volume { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "order_id")]
public long order_id { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "price")]
public double price { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "range")]
public string range { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "type_id")]
public int type_id { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "volume_remain")]
public int volume_remain { get; set; }
[Newtonsoft.Json.JsonProperty(PropertyName = "volume_total")]
public int volume_total { get; set; }
public class MarketOrderList
[JsonProperty(PropertyName = "array")]
public List<MarketOrder> MarketOrder { get; set; }