BetterExplorer.MainWindow.updateCheckTimer_Tick C# (CSharp) Метод

updateCheckTimer_Tick() приватный Метод

If and only if the application's last update check is more then the interval (UpdateCheckInterval) then it will update using CheckForUpdate
private updateCheckTimer_Tick ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
		private void updateCheckTimer_Tick(object sender, EventArgs e) {
			if (DateTime.Now.Subtract(LastUpdateCheck).Days >= UpdateCheckInterval) {
				CheckForUpdate(false);
			}
		}
	}
MainWindow