using System.Collections;
using System.Collections.Generic;
public static void Main()
List<EmployeeRecSimple> objs = new List<EmployeeRecSimple>();
EmployeeRecSimple rec1 = new EmployeeRecSimple();
EmployeeRecSimple rec2 = new EmployeeRecSimple();
using (var parser = new ChoCSVWriter<EmployeeRecSimple>(Console.Out).WithFirstLineHeader())
public partial class EmployeeRecSimple
public int Id { get; set; }
public string Name { get; set; }