-1
我注意到有一個控制檯應用程序,它在輸出中有一種「明亮的白色」顏色。請看下面的圖片。如何將控制檯應用程序的前景色設置爲「亮白色」?
我可以用C#實現這個?這是我試過的。
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Cyan; // But there is no "BrightWhite"
Console.WriteLine("This is a test.");
Console.ResetColor();
Console.Read();
}
你確定它是「明亮的白色」,而不是其他文字是灰色的? – 2014-10-17 01:23:57
是的,你是對的。那是灰色的。大聲笑 – thermostat 2014-10-17 01:28:37
所以..現在真的有問題嗎?大聲笑o_O – 2014-10-17 01:37:47