コード例 #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();
 }