本文整理匯總了C#中System.ConsoleColor枚舉的典型用法代碼示例。如果您正苦於以下問題:C# ConsoleColor枚舉的具體用法?C# ConsoleColor怎麽用?C# ConsoleColor使用的例子?那麽, 這裏精選的枚舉代碼示例或許可以為您提供幫助。
在下文中一共展示了ConsoleColor枚舉的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
//引入命名空間
using System;
class Example
{
public static void Main()
{
// Get an array with the values of ConsoleColor enumeration members.
ConsoleColor[] colors = (ConsoleColor[]) ConsoleColor.GetValues(typeof(ConsoleColor));
// Save the current background and foreground colors.
ConsoleColor currentBackground = Console.BackgroundColor;
ConsoleColor currentForeground = Console.ForegroundColor;
// Display all foreground colors except the one that matches the background.
Console.WriteLine("All the foreground colors except {0}, the background color:",
currentBackground);
foreach (var color in colors) {
if (color == currentBackground) continue;
Console.ForegroundColor = color;
Console.WriteLine(" The foreground color is {0}.", color);
}
Console.WriteLine();
// Restore the foreground color.
Console.ForegroundColor = currentForeground;
// Display each background color except the one that matches the current foreground color.
Console.WriteLine("All the background colors except {0}, the foreground color:",
currentForeground);
foreach (var color in colors) {
if (color == currentForeground) continue;
Console.BackgroundColor = color;
Console.WriteLine(" The background color is {0}.", color);
}
// Restore the original console colors.
Console.ResetColor();
Console.WriteLine("\nOriginal colors restored...");
}
}
輸出:
All the foreground colors except DarkCyan, the background color: The foreground color is Black. The foreground color is DarkBlue. The foreground color is DarkGreen. The foreground color is DarkRed. The foreground color is DarkMagenta. The foreground color is DarkYellow. The foreground color is Gray. The foreground color is DarkGray. The foreground color is Blue. The foreground color is Green. The foreground color is Cyan. The foreground color is Red. The foreground color is Magenta. The foreground color is Yellow. The foreground color is White. All the background colors except White, the foreground color: The background color is Black. The background color is DarkBlue. The background color is DarkGreen. The background color is DarkCyan. The background color is DarkRed. The background color is DarkMagenta. The background color is DarkYellow. The background color is Gray. The background color is DarkGray. The background color is Blue. The background color is Green. The background color is Cyan. The background color is Red. The background color is Magenta. The background color is Yellow. Original colors restored...