I'm trying to create a script that will show which employee has the closest Birthday. I'm working in C#. My class is set up like this
public class EmployeeClass
{
public string Name;
public int PayGrade;
public int ID;
public DateTime BirthdayDT;
}
I then have a csv file that creates a list of employees. I'm able to sort the list, and have figured out how to filter by name. But I'm having difficulties finding what birthday comes next. All the previous questions I've found are either other languages or work off of List instead of List.