示例#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();
 }