public static void Main()
""another_value"": ""world"",
""another_value"": ""bar"",
using (var r = ChoJSONReader<SampleObject>.LoadText(json))
Console.WriteLine(ChoUtility.Dump(rec));
public class SampleObject
public int Id { get; set; }
public string Value { get; set; }
[JsonProperty("another_value")]
public string AnotherValue { get; set; }
[JsonProperty("value_obj")]
public ValueObject ValueObject { get; set; }
[JsonProperty("value_list")]
public int[] ValueList { get; set; }
public string Name { get; set; }