A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/c-sharp/c-sharp-how-to-get-the-standard-input-stream-through-console/ below:

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

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

Last Updated : 28 Jan, 2019

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

csharp
// 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.



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