Answers for "console. clear"

5

console.clear js

The console.clear() method clears the console if the environment allows it.
Posted by: Guest on October-10-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language