static void Main()
        {
            sw.Start();

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

            Timer timer = new Timer(3, 7);

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