當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Console.ResetColor()用法及代碼示例


Console.ResetColor()方法用於將前景色和背景色設置為默認值,即背景為黑色,前景為白色。

用法:

public static void ResetColor ();

異常:


  • SecurityException:如果用戶沒有執行該操作的權限。
  • IOException:如果發生I /O錯誤。

以下示例程序旨在說明上述方法的用法:

範例1:將控製台顏色設置為紅色和黃色

// C# program to set the colors to red and yellow 
// to demostrate ResetColor() in next example 
using System; 
  
namespace GFG { 
  
class Program { 
  
    // Main Method 
    static void Main(string[] args) 
    { 
        // using BackgroundColor property 
        Console.BackgroundColor = ConsoleColor.Yellow; 
  
        // using ForegroundColor property 
        Console.ForegroundColor = ConsoleColor.Red; 
  
        Console.WriteLine("Welcome to GeeksForGeeks"); 
    } 
} 
}

輸出:

範例2:將顏色重置為默認值

// C# program to illustrate the 
// Console.ResetColor Property 
using System; 
namespace GFG { 
  
class Program { 
  
    // Main Method 
    static void Main(string[] args) 
    { 
  
        // using ResetColor() Method 
        Console.ResetColor(); 
  
        Console.WriteLine("Welcome to GeeksForGeeks"); 
    } 
} 
}

輸出:

參考:



相關用法


注:本文由純淨天空篩選整理自ShivamChauhan5大神的英文原創作品 Console.ResetColor() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。