public static void Main()
using (var p = ChoCSVReader<EmployeeRec>.LoadText(csv)
Console.WriteLine($"Id: {rec.Id}");
Console.WriteLine($"Name: {rec.Name}");
public partial class EmployeeRec
public int Id { get; set; }
public string Name { get; set; }