Skip to content

Instantly share code, notes, and snippets.

@amamdouh2k15
Last active January 15, 2017 12:47
Show Gist options
  • Save amamdouh2k15/375ab24980145daaf1f92cca86850737 to your computer and use it in GitHub Desktop.
Save amamdouh2k15/375ab24980145daaf1f92cca86850737 to your computer and use it in GitHub Desktop.
Delayed Task Start
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