我一直在做本教程之一,而且我搞砸了控制台应用程序前景色。这就是原始代码应该看起来的样子,但我在半途中徘徊并退出,在C#和Python项目上都没有深色洋红色,真的难以读懂=((
// Preserve current console text color; ConsoleColor oldColor = Console.ForegroundColor; // Change console text color Console.ForegroundColor = ConsoleColor.Gray; Console.WriteLine("Test Color"); // Cleaning up Console.ForegroundColor = oldColor;
我尝试用它来改变它,但似乎做的是改变控制台颜色,当我在Python项目中调试时,但同时当我在Python中做同一项目的无Debag它仍然把它带回来。
Console.ForegroundColor = ConsoleColor.Gray; Console.WriteLine("测试颜色");
我已经尝试过各种各样的订单,并通过创建新项目进行检查,但没有任何帮助=(
答案 0 :(得分:0)
我不是真的在这里理解,但如果你需要品红,你就不能改变:
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine("Test Color")
到
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("Test Color")
如果你想要洋红色。