|
2#
楼主 |
发表于 2014-3-28 17:51:03
|
只看该作者
第二章 简单程序
/*
* 带分隔注释
*引用空间
*
*/
using System; //引用空间
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1 //新命名的空间
{
/// <summary>
/// 这个是文档注释
/// </summary>
// 这个是单行注释
class Program //类
{
static void Main(string[] args) //文件开头
{
Console.WriteLine("第一个程序");//在控制台上输出字符串
Console.WriteLine("第一个程序{1}我来的{1}", 6, 8); //格式化输出
Console.ReadLine(); //在控制台输入
}
}
}
|
|