// OR (|) Turn all bits ON with an | of 1 for each bit you wish to turn on. /// AND (&) Turn all bits OFF with an & of 0 for each bit you wish to turn off. /// XOR (^) Toggles all bits ON or OFF depending on their current state.
//Lab assignment //============== //Define a Person class with FirstName, LastName, DateOfBirth, Salary //Add a default comparer to the Person class to compare by DateOfBirth //In Form1: Create a list of Person objects // Add to it at least a dozen people //Provide ListView to display all the people in the list //Provide buttons to display all the people to sort using the default comparer //to sort by salary //to sort by last name / first name
//======================================================================