Este método se utiliza para borrar el búfer de la consola y la ventana de la consola correspondiente de la información de visualización.
Sintaxis: public static void Clear();
Excepciones: este método lanza IOException si ocurre un error de E/S.
Los siguientes programas muestran el uso del método Console.Clear():
Programa 1: para mostrar los contenidos antes del uso del método Clear
// C# program to illustrate the use // of Console.Clear Method using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace GFG { class Program { static void Main(string[] args) { // Print the statements Console.WriteLine("GeeksForGeeks"); Console.WriteLine("A Computer Science Portal"); Console.WriteLine("For Geeks"); } } }
Producción:
GeeksForGeeks A Computer Science Portal For Geeks
Programa 2: use el método clear() para borrar la consola
// C# program to illustrate the use // of Console.Clear Method using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace GFG { class Program { static void Main(string[] args) { // Print the statements Console.WriteLine("GeeksForGeeks"); Console.WriteLine("A Computer Science Portal"); Console.WriteLine("For Geeks"); // Clear the Console Console.Clear(); } } }
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