using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _01个程序
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("************************");
// WriteLine输出字符并将光标移到下行,Write输出字符但光标不移动到下行
Console.WriteLine("* 这是我第一个C#程序 *");
Console.WriteLine("************************");
Console.WriteLine("典菲菲反\"\"对丰富");
// ""在字符中如何显示 \"
Console.ReadKey();
}
}
}
运行效果:
原文:http://www.cnblogs.com/start-from-scratch/p/4979626.html