Last Updated : 11 Jul, 2025
Console.Read() Methodis used to read the next character from the standard input stream. This method basically blocks its return when the user types some input characters. As soon as the user press ENTER key it terminates.
Syntax: public static int Read (); Return Value: It returns the next character from the input stream, or a negative one (-1) if there are currently no more characters to be read. Exception: This method will give IOException if an I/O error occurred.
Below programs illustrate the use of above-discussed method:
Example 1: csharp
// C# program to illustrate the use
// of Console.Read Method
using System;
namespace GFG {
class Program {
static void Main(string[] args)
{
int x;
Console.WriteLine("Enter your Character to get Decimal number");
// using the method
x = Console.Read();
Console.WriteLine(x);
}
}
}
Output: Example 2: csharp
// C# program to illustrate the use
// of Console.Read Method
using System;
namespace GFG {
class Program {
static void Main(string[] args)
{
// Write to console window.
int x;
Console.WriteLine("Enter your Character to get Decimal number");
x = Console.Read();
Console.WriteLine(x);
// Converting the decimal into character.
Console.WriteLine(Convert.ToChar(x));
}
}
}
Output: Reference:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4