コード例 #1
0
        static void Main()
        {
            sw.Start();

            Timer timer = new Timer(3, 7);
            timer.Methods += TestMethodOne;
            timer.Methods += TestMethodTwo;
            timer.Execute();
        }
コード例 #2
0
        static void Main()
        {
            sw.Start();

            Timer timer = new Timer(3, 7);

            timer.Methods += TestMethodOne;
            timer.Methods += TestMethodTwo;
            timer.Execute();
        }