Dada la Consola normal en C#, la tarea es verificar si el BLOQ MAYÚS está activado o desactivado a través de la Consola.
Enfoque: Esto se puede hacer usando la propiedad BLOQ MAYÚS en la clase Consola del paquete del Sistema en C#.
Programa 1: cuando el BLOQ MAYÚS está activado
// 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); } } }
Producción:
Programa 2: cuando el BLOQ MAYÚS está desactivado
// 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); } } }
Producción:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA