- Giới thiệu cấu trúc chương trình HelloWorld
- Giới thiệu về file Program.cs
- Giới thiệu về namespace, class và method
- Câu lệnh Console.Writeline()
using System;
namespace HelloWorld
{
internal class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello world");
Console.ReadKey();
}
}
}
Tham khảo: https://docs.microsoft.com/en-us/dotnet/core/tutorials/top-level-templates
Tác giả: Bạch Ngọc Toàn
Chú ý: Tất cả các bài viết trên TEDU.COM.VN đều thuộc bản quyền TEDU, yêu cầu dẫn nguồn khi trích lại trên website khác.