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