Console.ReadLine | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Console.ReadLine

i still dont quite get what this command does.

13th May 2018, 10:47 AM
Ariel
1 Answer
+ 1
@Donna : Console.WriteLine will print every text in an new line not ReadLine. ReadLine gets a input from a keyboard and saves the input in a variable string input; // this is the variable input = Console.ReadLine(); //Console.ReadLine save the input from the keyboard in the variable Console.WriteLine(input);// Console.WriteLine print the output to the screen. In the playground all inputs need to be given before the code runs. So when you get the pop-up box "Seems that your program requires input", you have to give your input there. https://code.sololearn.com/c2d47aW9Mm64
13th May 2018, 8:32 PM
sneeze
sneeze - avatar