/* Name:
* Date:
*
* Objective: Create a C# Console Application using a loop that prompts the
* user to input a name 10 times. At the end of each loop event,
* output the current list of users. In addition, add an if clause
* in your loop that allows the user to exit out of the loop if they
* type the letter "x".
* Sample Output: Enter User #1's Name:
* Bob
* Current Users: Bob
* Enter User #2's Name:
* John
* Current Users: Bob, John
* Enter User #3's Name:
* x
* (Program exits)
*/