Forex_Strategy_Builder.Actions.Application_Idle C# (CSharp) Method

Application_Idle() private method

Application idle
private Application_Idle ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        void Application_Idle(object sender, EventArgs e)
        {
            Application.Idle -= new EventHandler(Application_Idle);
            string sLockFile = GetLockFile();
            if (!string.IsNullOrEmpty(sLockFile))
                File.Delete(sLockFile);

            return;
        }
Actions