using System;
using ChoETL;
public class Program
{
public static void Main()
typeof(ChoJSONReader).GetAssemblyVersion().Print();
"".Print();
string json = @"[
""Id"": 1,
""Name"": ""Jeanette""
},
""Id"": 2,
""Name"": ""Giavani""
}
]";
foreach (dynamic e in ChoJSONReader.LoadText(json))
Console.WriteLine(e.Id);
Console.WriteLine(e.Name);