iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 3
1
Software Development

C#可以做出甚麼?系列 第 3

HELLO WORLD

  • 分享至 

  • xImage
  •  

其實昨晚真的很想寫/images/emoticon/emoticon06.gif

但是真的超愛睏的啦/images/emoticon/emoticon20.gif

每個語言練習的開始都會寫HELLOWORLD

我覺得那就是在確認自己的軟體是否有安裝好

然後自己真的會RUN嗎?
因為有的語言要RUN一個東西 需要安裝的東西還蠻多的
/images/emoticon/emoticon10.gif

1.打開藍色的VSCODE
https://ithelp.ithome.com.tw/upload/images/20201003/20119035DY8oqkzFWb.png

2.按CTRL+~ 就會顯現終端機=CMD
https://ithelp.ithome.com.tw/upload/images/20201003/201190352K8Rx2nQr7.png

3.新增HelloWorl資料夾在CMD打上dotnet new console -o "HelloWorld"
https://ithelp.ithome.com.tw/upload/images/20201003/20119035ea0UBHn1fj.png

4.在Program.cs裡面就會自動生成程式碼


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


5.其實我們現在是在資料夾的外面

https://ithelp.ithome.com.tw/upload/images/20201003/20119035VobXytNDN4.png

6.要到資料夾裡面..才可以使用dotnet run
https://ithelp.ithome.com.tw/upload/images/20201003/20119035ZTzrJKnU38.png

7.using System就是微軟已經寫好的命名空間
8.static void Main(string[] args)的Main是開始執行程序
9. Console.WriteLine印在控制台

DEAR ALL 我們明天見~/images/emoticon/emoticon06.gif


上一篇
環境安裝
下一篇
從變量開始~
系列文
C#可以做出甚麼?30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言