Exemplo n.º 1
0
        static void Main()
        {
            sw.Start();

            Timer timer = new Timer(3, 7);
            timer.Methods += TestMethodOne;
            timer.Methods += TestMethodTwo;
            timer.Execute();
        }
Exemplo n.º 2
0
        static void Main()
        {
            sw.Start();

            Timer timer = new Timer(3, 7);

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