111,125
社区成员
发帖
与我相关
我的任务
分享 try
{
if ( TimeIsUp )
{
SysTimer.Change( Timeout.Infinite, this.Config.ChkInterval );
//开始处理服务
this.StartService();
}
}
catch ( Exception ex ) { }
finally
{
if ( SysTimer != null )
{
SysTimer.Change( this.Config.ChkInterval, this.Config.ChkInterval );
}
}