Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để xóa màn hình bằng C #?

Sử dụng phương thức Console.Clear () để xóa màn hình và vùng đệm bảng điều khiển. Khi phương thức Clear được gọi, con trỏ sẽ tự động cuộn đến góc trên bên trái của cửa sổ.

Ở đây, chúng tôi đã xóa màn hình và sau đó đặt ForegroundColor và BackgroundColor -

ConsoleColor newForeColor = ConsoleColor.Blue;
ConsoleColor newBackColor = ConsoleColor.Yellow;

Sau đây là mã hoàn chỉnh -

Ví dụ

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;
   }
}

Đầu ra

Clearing the screen!