Payroll With LINQ Project

This project continued with me learning LINQ. It takes 2 arrays, both with 8 elements set in them. The first array holds the employee information and the second holds the hours that they worked. The program sorts the data first by employee hourly rate descending, then sorts by total hours worked which used a "let" statement inside the LINQ statement, and finally sorts by total hours and total pay.

Program Run

Main Class Code

Employee Class Code

Hours Worked Class Code