I'm making a calculator for my C# class. I'm not allowed to use buttons for operands. There's an operand text box in which the user is supposed to enter "+" for addition, "-" for subtraction, "/" for division, or "*" for multiplication.
I'm trying to find out how to make it where you can only enter one of those four characters, but it also only lets you input one at a time.
I'm pretty new to C#.