标签:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.BackgroundColor = ConsoleColor.White;
Console.ForegroundColor = ConsoleColor.Black;
Console.WriteLine("Hello World");
}
}
}
//若 先输出‘‘Hello World‘‘ 后改变字体颜色 则字体会变为灰色
标签:
原文地址:http://www.cnblogs.com/yi-jie/p/4343007.html