步驟 2. Hello, World!
很遺憾,但我們仍然無法抵御這種誘惑……我們還是不得不完成一個基於 C# 的經典"Hello, World!"應用程序,這個應用程序最初是用 C 語言編寫的。
修改源代碼
1. 在 Solution Explorer 中雙擊文件"class1.cs"。可以通過"VIEw"菜單來顯示 Solution Explorer。 2. 更改預生成的模板 (class1.cs),如下面以斜體突出顯示的 代碼所示。using System;
namespace quicksort
{
///
/// Summary description for Class1.
///
class Class1
{
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
Console.WriteLine ("Hello, C#.Net World!");
}
}
}
在 Visual C# 中運行 Hello World 示例應用程序時,輸出結果的屏幕截圖如下: