Partition employees based on salary threshold?
Partition employees based on salary threshold
var high = employees.Where(e => e.Salary >= 80000);
var low = employees.Where(e => e.Salary < 80000);
Partition employees based on salary threshold
var high = employees.Where(e => e.Salary >= 80000);
var low = employees.Where(e => e.Salary < 80000);