前面几位说的很清楚了,我贴点完整的代码,并且只改变字体颜色。- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication3
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine("Hello World!");
- Console.ReadKey();
- }
- }
- }
复制代码 |
|