在使用C#的普通控制台的情况下,任务是通过控制台检查CAPS LOCK是打开还是关闭。
方法:可以使用C#中System包的Console类中的CAPS LOCK属性来完成此操作。
程序1:当CAPS LOCK打开时
// C# program to illustrate the
// Console.CapsLock 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 CAPS LOCK is on or off
Console.WriteLine("Is CAPS LOCK on: {0}",
Console.CapsLock);
}
}
}
输出:
程序2:当CAPS LOCK关闭时
// C# program to illustrate the
// Console.CapsLock 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 CAPS LOCK is on or off
Console.WriteLine("Is CAPS LOCK on: {0}",
Console.CapsLock);
}
}
}
输出: