VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/console-readline-method-in-c-sharp/

⇱ Console.ReadLine() Method in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Console.ReadLine() Method in C#

Last Updated : 11 Jul, 2025

This method is used to read the next line of characters from the standard input stream. It comes under the Console class(System Namespace). If the standard input device is the keyboard, the ReadLine method blocks until the user presses the Enter key. And if standard input is redirected to a file, then this method reads a line of text from a file. 

Syntax: public static string ReadLine ();
Return Value: It returns the next line of characters of string type from the input stream, or null if no more lines are available. 


Exceptions:

  • IOException: If an I/O error occurred.
  • OutOfMemoryException: If there is insufficient memory to allocate a buffer for the returned string.
  • ArgumentOutOfRangeException: If the number of characters in the next line of characters is greater than MaxValue.


Below program illustrate the use of the above-discussed method:
Example 1: Here, take input from the user. Since age is an integer, we typecasted it using Convert.ToInt32() Method. It reads the next line from the input stream. It blocks until Enter key is pressed. Hence it is commonly used to pause the console so that the user can check the output.

Output:

👁 readline-1


Example 2: To pause the console

Output:

👁 readline-2


Explanation: In the above output you can see that the console is paused. The cursor will blink continuously until you press Enter key.
Reference:

Comment
Article Tags:
Article Tags:

Explore