Exemplo n.º 1
0
        static void Main(string[] args)
        {
            AsyncTimer at = new AsyncTimer(FirstCheck, 5, 1000);
            at.Run();
            AsyncTimer at1 = new AsyncTimer(SecCheck, 10, 3000);
            at1.Run();

        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            AsyncTimer at = new AsyncTimer(FirstCheck, 5, 1000);

            at.Run();
            AsyncTimer at1 = new AsyncTimer(SecCheck, 10, 3000);

            at1.Run();
        }