某些时候,如果想一直干一件事情,又不想开线程,可以考虑定时器。

 代码如下:

            m_Timer = new System.Threading.Timer((o) =>
            {

            }, 0, 10, 1000);