Open In App

C# | Getting the Standard Error Output Stream through Console

Last Updated : 28 Jan, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
Given a normal console, the task is to get the Standard Error Output Stream through this Console in C#. Approach: This can be done using the Error property in the Console class of the System package in C#. Program: Getting the Standard Error Output Stream csharp
// C# program to illustrate the
// Console.Error 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 Error output Stream
        Console.WriteLine("Standard Error Output Stream: {0}",
                                               Console.Error);
    }
}
}
Output: Note: The TextWrite represents a writer that can write a sequential series of characters.

Next Article
Article Tags :

Similar Reads