Converting Color to ConsoleColor?

Here are the console color hex values, as converted by .NET 4.5. First the program: using System; using System.Drawing; class Program { static void Main(string[] args) { foreach (var n in Enum.GetNames(typeof(ConsoleColor))) Console.WriteLine(“{0,-12} #{1:X6}”, n, Color.FromName(n).ToArgb() & 0xFFFFFF); } } And here’s the output. As you can see, there’s a problem with the reporting for … Read more