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

📅  最后修改于: 2021-05-29 14:37:33             🧑  作者: Mango

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

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

程序:获取标准输入流

// C# program to illustrate the
// Console.In 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 Input Stream
        Console.WriteLine("Standard Input Stream: {0}",
                                          Console.In);
    } 
}
}

输出:

注意: TextReader表示可以读取一系列连续字符的阅读器。