Difference between Console.Read() and Console.ReadLine()?

Console.Read() reads only the next character from standard input,
and Console.ReadLine() reads the next line of characters from the standard input stream.

Standard input in case of Console Application is input from the user typed words in console UI of your application. Try to create it by Visual studio, and see by yourself.

Leave a Comment