I'm trying to set the background and foreground colors of my console application. But no matter what I try, the colors do not differ from the default black & white. This is the beginning of my Main method. I've tried with and without Console.Clear()
Console.ForegroundColor = ConsoleColor.Green;
Console.Clear();
I've checked MSDN and searched SO already, and the above example seems to work for everybody else. Any advice?