📜  C#|如何通过控制台获取标准输出流

📅  最后修改于: 2021-05-29 18:03:07             🧑  作者: Mango

给定一个普通的控制台,任务是通过C#中的此控制台获取标准输出流。

方法:可以使用C#中System包的Console类中的Out属性来完成此操作。

程序:获取标准输出流

// 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);
    }
}
}

输出:

注意: TextWriter代表标准输出流。