Answers for "console clear c"

C
0

c# console clear

using System;
using System.Collections.Generic;

class Program {
   static void Main() {
      ConsoleColor foreColor = Console.ForegroundColor;
      ConsoleColor backColor = Console.BackgroundColor;
      Console.WriteLine("Clearing the screen!");
      Console.Clear();
      ConsoleColor newForeColor = ConsoleColor.Blue;
      ConsoleColor newBackColor = ConsoleColor.Yellow;
   }
}
Posted by: Guest on October-26-2020
0

console clear c

By Using system(“clear”)
  or
By using a regex “\e[1;1H\e[2J”
Posted by: Guest on October-29-2021
1

console clear c+

i swear if you write system("cls"); one more time you're ugly
Posted by: Guest on August-02-2021

Code answers related to "C"

Browse Popular Code Answers by Language