Alternative title: Fastest way to read a csv file into objects
Alternative title 2: Its only one line of code!
File.ReadAllLines("Employees.csv")
.Select(x => x.Split(','))
.Select(x =>
new EmployeeObject
{
FirstName=x[0],
LastName=x[1],
DateOfBirth=DateTime.Parse(x[2]),
Department=x[3]
});