给定一个正常的控制台,任务是通过C#中的此控制台获取标准错误输出流。
方法:可以使用C#中System包的Console类中的Error属性来完成此操作。
程序:获取标准错误输出流
// C# program to illustrate the
// Console.Error 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 Error output Stream
Console.WriteLine("Standard Error Output Stream: {0}",
Console.Error);
}
}
}
输出:
注意: TextWrite表示可以连续写入一系列字符的编写器。