Hi - can anyone help with this interview question : 1) Consider the following class (User). Provide a class with 3 methods: "AddUser" accepts a User instance as a parameter and add it to a collection. "GetUser" accepts a UserID as a parameter and returns the corresponding User instance. "GetOrderedUserArray" returns an array of User instances ordered by UserID. ###################### Code: public class User { public int UserID; public string FamilyName; public string GivenName; public User(int userID, string familyName, string givenName) { UserID = userID; FamilyName = familyName; GivenName = givenName; } } THANKS