📌  相关文章
📜  创建新的 .net 核心项目 Visual Studio - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:21.154000             🧑  作者: Mango

代码示例1
// Check everything installed correctly
>>> dotnet
// create new app
>>> dotnet new console -o MyApp
// ebter to folder
>>> cd MyApp
// run app
>>> dotnet run