[C#]初階C#第一課之Hello World

[C#]初階C#第一課之Hello World

基礎知識

 

在 .NET Framework 中, ConsoleWriteLine() 和 Console.Read()是Console的一種輸出方法。

Console.WriteLine() 會把小括號內的資料輸出

而Console.Read()則會暫停程式執行,讓我們觀看輸出結果

 

實作

 

1. 先開啟一個主控台應用程式

 

圖片 1

 

2. 加入程式碼並按開始測試

 

圖片 2


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
            Console.Read();
        }
    }
}

 

3. 輸出畫面

 

圖片 3

 

是不是很簡單呢!動手做做看吧 ^_^

希望對大家有幫助^_^

如果上述有錯誤,請不吝指教喔! 感謝大家

 

 

 

 

參考與引用

 

Hello World -- 您的第一個程式 (C# 程式設計手冊)---MSDN