0
Why I'm getting an error on Console.ReadLine...?
static void Main(string[] args) { string startRally = Console.ReadLine; // if (!rallying) { //rallying = true; //} }
2 Answers
+ 3
Use Console.ReadLine(), with parenthesis. Without them, you are manipulating the function itself instead of calling it.
0
Wooođ Thanks... I was doing it wrong....



