Open In App

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

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

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



Program: Getting the Standard Output Stream




// C# program to illustrate the
// Console.Out 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 Output Stream
        Console.WriteLine("Standard Output Stream: {0}",
                                          Console.Out);
    }
}
}

Output:



Note: The TextWriter represents the standard output stream.

Article Tags :
C#