Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C# | How to get the Standard Input Stream through Console

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Given a normal console, the task is to get the Standard Input Stream through this Console in C#.

Approach: This can be done using the In property in the Console class of the System package in C#.

Program: Getting the Standard Input Stream




// C# program to illustrate the
// Console.In Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
  
        // Get the Standard Input Stream
        Console.WriteLine("Standard Input Stream: {0}",
                                          Console.In);
    
}
}

Output:

Note: The TextReader represents a reader that can read a sequential series of characters.

My Personal Notes arrow_drop_up
Last Updated : 28 Jan, 2019
Like Article
Save Article
Similar Reads