Problem: Use LINQ to select all employees with hours worked of more than 40 hours. An employee has a name, hours worked, pay rate, and department. Use the following data for data source:
Cristina Smith, 35.3, 22.00, Marketing
Logan Reed, 42, 31.25, Marketing
Brandon Wang, 20, 18.50, Analyst
Clayton Smith, 45, 40, Marketing
Justin Gale, 51.2, 35.25, Analyst
Make a console application called Chapter5Challenge1. Add a class file called Employee.cs to the project. In the Program.cs file, add the above five employees in a list. Write LINQ statement in query syntax and display the result.