what does console.readline do in c# code example
Example 1: c# what is console readline
Console.ReadLine(); ??????
Reads the next line of characters from the standard input stream.
One of the most common uses of the ReadLine method is to pause program
execution before clearing the console and displaying new information to
it, or to prompt the user to press the Enter key before terminating the
application.
Example 2: console readline c
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.
using System;
using System.IO;
class GFG {
public static void Main()
{
int age;
string name;
Console.WriteLine("Enter your name: ");
name = Console.ReadLine();
Console.WriteLine("Enter your age: ");
age = Convert.ToInt32(Console.ReadLine());
if (age >= 18)
{
Console.WriteLine("Hello " + name + "!"
+ " You can vote");
}
else {
Console.WriteLine("Hello " + name + "!"
+ " Sorry you can't vote");
}
}
}
Example 3: console readline c#
console readline