给定普通的C#控制台,任务是检查是否在控制台上重定向了输出。
方法:可以使用C#中System包的Console类中的IsOutputRedirected属性来完成此操作。此属性返回一个布尔值,指示是否重定向输出。
程序:
// 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);
}
}
}
输出: