Dada una consola normal, la tarea es obtener el flujo de salida estándar a través de esta consola en C#.
Enfoque: esto se puede hacer usando la propiedad Out en la clase Console del paquete System en C#.
Programa: Obtener el flujo de salida estándar
// 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); } } }
Producción:
Nota: TextWriter representa el flujo de salida estándar .
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