C# | Check if Error is Redirected on the Console or not
Given the normal Console in C#, the task is to check if the Error is Redirected on the Console.
Approach: This can be done using the IsErrorRedirected property in the Console class of the System package in C#. This property returns a boolean value stating whether the Error is Redirected or not.
Program:
// C# program to illustrate the // Console.IsErrorRedirected Property using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GFG { class Program { // Main Method static void Main( string [] args) { // Check if Error is Redirected Console.WriteLine( "Is Error Redirected: {0}" , Console.IsErrorRedirected); } } } |
chevron_right
filter_none
Output: