System.Threading.Timer stateTimer1;
        AutoResetEvent autoEvent1 = new AutoResetEvent(true);
        TimerCallback timerDelegate1;            timerDelegate1 = new TimerCallback(MyInvokeXiancheng1);
            stateTimer1 = new System.Threading.Timer(timerDelegate1, autoEvent1, 100, 5000);请问用多个System.Threading.Timer进行数据的采集,最后会调用同一个数据处理函数,多个时钟对这个函数的执行会互相干扰吗.这个函数有全局计数变量,记录处理次数,怎么控制这个全局变量不受别的线程影响啊