Last active
January 15, 2017 12:47
-
-
Save amamdouh2k15/375ab24980145daaf1f92cca86850737 to your computer and use it in GitHub Desktop.
Delayed Task Start
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Threading.Timer timer = null; | |
timer = new System.Threading.Timer((obj) => | |
{ | |
//Delayed Code here | |
timer.Dispose(); | |
}, | |
null, 3000 /*Delay time in ms*/, System.Threading.Timeout.Infinite); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment