晚上開啟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了 ~

2.  https://stackoverflow.com/questions/65209536/microsoft-visual-studio-2019-the-project-file-cannot-be-opened-unable-to-locat

最後在vscode裡面輸入 

 

using System;
 
namespace helloworld
{
 
    class Program
    {
        static void Main (string[] args)
        {
        //這是第一個程式 , helloworld
        Console.WriteLine ("helloworld!");
       
        }
       
    }
 
}
 
就可以印出 hello world了
恭喜升為LV2
😆😆😆
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 湯尼 的頭像
    湯尼

    湯尼的部落格

    湯尼 發表在 痞客邦 留言(0) 人氣()