
บทที่ 2 โครงสร้างของภาษา C#
// #C Hello Word program
using System;
namespace Hello
{
class Program
{
static void Main()
{
// print text to the screen
Console.WriteLine("Hello World!");
}
}
}
คำสั่ง using
คำสั่ง using ถูกใช้เพื่อ include ไลบรารี่และฟ...