using System;
using ChoETL;
public class Program
{
public static void Main()
string json = @"
[
""id"": 1,
""value"": ""hello"",
""another_value"": ""world"",
""value_obj"": {
""name"": ""obj1""
},
""value_list"": [
1,
2,
3
]
""id"": 2,
""value"": ""foo"",
""another_value"": ""bar"",
""name"": ""obj2""
4,
5,
6
}
";
using (var r = ChoJSONReader.LoadText(json))
foreach (var rec in r)
Console.WriteLine(rec.DumpAsJson());