I am also a beginner to C# entirely. This is my first language. I feel like there was a missing logical step in the instruction to add == to the print method. I don’t know where that is, but as a beginner:
- I had no idea where I should be making a change
- I didn’t know what that change should be
- the concept of why “string input” was put into the OnUserInput parameters was still unclear
- How do you know what the input is?
My first guess was to try to write the code as follows:
void OnUserInput(string 1);
{
print(true);
}
which is obviously incorrect, but that’s where my mind went: When the user inputs a string value of 1 print true otherwise print false.