using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
public static void Main()
typeof(ChoJSONReader).GetAssemblyVersion().Print();
using (var reader = ChoJSONReader<EmployeeRec>.LoadText(json))
DataTable dt = reader.AsDataTable();
foreach (DataRow dr in dt.Rows)
Console.WriteLine("Id: {0}, Name: {1}", dr[0], dr[1]);
public override string ToString()
return "{0}. {1}".FormatString(Id, Name);