Skip to content
Koson Trachu edited this page Aug 12, 2016 · 5 revisions

Welcome to the class_tutorial1 wiki!

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.   
    }
 
}

Clone this wiki locally