예제 #1
0
파일: Program.cs 프로젝트: 3141592/vs
        static void DoIt()
        {
            MyEventThing thing = new MyEventThing();

            thing.Tick += new EventHandler(thing_Tick);
            Thread.Sleep(5000);
            thing.Dispose();
        }
예제 #2
0
파일: Program.cs 프로젝트: 3141592/vs
 static void DoIt()
 {
     MyEventThing thing = new MyEventThing();
     thing.Tick += new EventHandler(thing_Tick);
     Thread.Sleep(5000);
     thing.Dispose();
 }