给定普通的C#控制台,任务是检查是否在控制台上重定向了输入。
方法:可以使用C#中System包的Console类中的IsInputRedirected属性来完成此操作。此属性返回一个布尔值,该布尔值说明输入是否被重定向。
程序:
// C# program to illustrate the
// Console.IsInputRedirected 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)
{
// Check if Input is Redirected
Console.WriteLine("Is Input Redirected: {0}",
Console.IsInputRedirected);
}
}
}
输出: