控制台程序可能是大学时代做的最多的一种程序了!
总是有说不出的亲切感:
所以傻家就把初次C#作品定为控制台程序。
像很多刚学习语言的第一个程序一样,简单的输入输出:
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("第一个程序");
Console.ReadKey();
}
}
}
没有特点 没有技巧 简单 而 明了 开始 C# 之路
转载于:https://www.cnblogs.com/heartcool/archive/2008/04/08/1142519.html