标签: c# timer timeout
我有一个读取excel文件的迷你程序。好吧,有时候,我的程序运作良好并且保持不做任何事情。所以,我想抓住这个,如果我的程序延迟超过5分钟,我想停止这个过程。
那么,我该怎么做呢?
我试试这个,但没有工作
aTimer = new System.Timers.Timer(2000); aTimer.Enabled = true; aTimer.Start(); read_file(f, sDir, pathOut, pathLogOut);