Dada la consola normal en C#, la tarea es verificar si la salida se redirige en la consola.
Enfoque: esto se puede hacer usando la propiedad IsOutputRedirected en la clase Console del paquete System en C#. Esta propiedad devuelve un valor booleano que indica si la salida se redirige o no.
Programa:
// C# program to demonstrate the // Console.IsOutputRedirected 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 Output is Redirected Console.WriteLine("Is Output Redirected: {0}", Console.IsOutputRedirected); } } }
Producción:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA