using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
public static void Main()
typeof(ChoJSONReader).GetAssemblyVersion().Print();
using (var reader = ChoJSONReader<EmployeeRec>.LoadText(json))
dynamic rec = (object)null;
while ((rec = reader.Read()) != null)
Console.WriteLine(rec.Id);
Console.WriteLine(rec.Name);
public override string ToString()
return "{0}. {1}".FormatString(Id, Name);