define ReadLine method ?
define ReadLine method ?
![](/static/compass_v2/shared-icons/check-mark.png)
ReadLIne(): -
This method comes under the class “Console”. In C# this method reads the next line characters from the standard input stream.
Below is the C# program to implement the ReadLine() method: -
//using the namespace System
using System;
//Defining the main class
public class Example
{
//Defining the main method
public static void Main()
{
//Declaring the variable to store the string
string s;
//Prompts the user to enter your name
Console.WriteLine("Please enter your name.");
//ReadLine method is used read the next line characters
s = Console.ReadLine();
//Displaying the name
Console.WriteLine("Entered name is: "+s);
}
}
Step by step
Solved in 3 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)