A5下载程序语言

分类分类

C# 程式設計手冊

C# 程式設計手冊

大小:559 KB更新:2010/07/20

类别:C#教程系统:WinAll

立即下载

C# 程式設計手冊,WORD格式,共605页,40多万字,推荐下载阅读!

Hello World -- 您的第一個程式 (C# 程式設計手冊)
更新:2007 年 11 月
下面的主控台程式是傳統的 "Hello World!" 程式之 C# 版本,它會顯示 Hello World! 的字串。(源码网整理:www.codepub.com)
C# 複製程式碼
// A Hello World! program in C#
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
System.Console.WriteLine("Hello World!");

// Keep the console window open in debug mode.
System.Console.WriteLine("Press any key to exit.");
System.Console.ReadKey();
//the difference between Read() and ReadKey()
}
}
}
現在讓我們檢查這個程式的幾個重要部分。
註解:第一行包含了一段註解:
C# 複製程式碼
// A Hello World! program in C#
字元 // 可以將這行的後面部分轉換成註解。您也可以藉由將一段文字區塊包含在 /* 和 */ 的字元間進行註解,例如:
......

精品推荐
同类推荐
      相关文章
      相关下载
      说两句网友评论
        我要跟贴
        取消
        推荐专题