Dada la Consola normal en C#, la tarea es cambiar el CursorLeft de la Consola.
Enfoque: esto se puede hacer usando la propiedad CursorLeft en la clase Console del paquete System en C#. Esto cambia la posición horizontal del Cursor. Básicamente, obtiene o establece la posición de la columna del cursor dentro del área del búfer.
Programa 1: Obtener el valor de CursorLeft
// C# program to illustrate the // Console.CursorLeft 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 CursorLeft position Console.WriteLine("Current CursorLeft position: {0}", Console.CursorLeft); // Get the CursorLeft position Console.Write("Current CursorLeft position: {0};", Console.CursorLeft); Console.WriteLine(" and now :{0}", Console.CursorLeft); } } }
Producción:
Programa 2: Configuración del valor de CursorLeft
// C# program to illustrate the // Console.CursorLeft 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 CursorLeft position Console.WriteLine("Current CursorLeft position: {0}", Console.CursorLeft); // Set the CursorLeft position Console.CursorLeft = 25; // Get the CursorLeft position Console.Write("Current CursorLeft position: {0};", Console.CursorLeft); } } }
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