晚上開啟vs code 想用C# 開啟hello world之旅
發現 ....
一直有錯誤
後來google了一下
1. 官方教學 ( 很好用 ) : https://learn.microsoft.com/zh-tw/dotnet/core/tutorials/with-visual-studio-code?pivots=dotnet-7-0
就是vscode先裝C#擴充功能 , 然後再裝NET 7 SDk , 最後把dotnet目錄加入path裡面就OK了 ~
最後在vscode裡面輸入
using System;
namespace helloworld
{
class Program
{
static void Main (string[] args)
{
//這是第一個程式 , helloworld
Console.WriteLine ("helloworld!");
}
}
}
就可以印出 hello world了
恭喜升為LV2
😆😆😆
全站熱搜
留言列表