Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 789 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 789 Bytes

ตัวอย่างการสร้างคลาสใน C#

Class Tutorial

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

// ตัวอย่างที่ 1 การเขียนคลาสอย่างง่าย
// คลาสอย่างง่าย ไม่มีอะไรเลย มีเพียงคำว่า class, ชื่อคลาส และวงเล็บปีกกา
namespace class_tutorial1
{
   class Program
   {
       static void Main(string[] args)
       {
       }
   }
   // ระวัง อย่าไปเขียนไว้ในคลาส Program

   class MyClass
   {
        // empty class.   
   }

}