2008/08/14

Enum.GetNames

foreach (string colorName in Enum.GetNames(typeof(ConsoleColor)))
{
Console.Write(colorName + ", ");
}

输出全部控制台背景颜色

没有评论: