+ 3
Console.Clear(); C#
I have code if(x == help) { Console.Clear(); } Why this no work? Pls help :)
8 Answers
+ 6
On the SoloLearn compiler Console.Clear() wonât work, but if you actually have C# installed and run it, it will work. Just a SoloLearn thing âșïž
+ 3
~ swim ~ Iâve used repl.it before; itâs interactive (just a bit slow though). Ah well, until the day mobile phones are more capable....
+ 2
Sorry, I already have the quotes in mu program. It just wont work. I put a writeline in it and it worked. Rowsej
+ 2
Try it on sharp develop if you want to run it with low ram and storage it works very smooth on PC.
+ 2
Tech N Games Yea it works great on my pc but when im away from it I just use this app
+ 1
// You forgot the "quotes":
if(x == "help") {
Console.Clear();
}
+ 1
Rowsej Yea thanks, i was thinking that. kinda sucks lol
+ 1
~ swim ~ True... itâs tricky to get an interactive console with sockets...