เปิดคอมมาไลน์ ใช้คำสั่ง
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir hwapp | |
cd hwapp | |
dotnet new |
จะพบไฟล์ดังนี้

- Program.cs เป็นไฟล์ภาษา C# สำหรับเขียนโปรแกรม
- project.json เป็นไฟล์ตั้งค่าโครงการ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ConsoleApplication | |
{ | |
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello World!"); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet restore | |
dotnet run |
ผลลัพธ์

0 ความคิดเห็น:
แสดงความคิดเห็น