Skip to content

Instantly share code, notes, and snippets.

@yemrekeskin
Last active December 23, 2015 12:19
Show Gist options
  • Save yemrekeskin/6634247 to your computer and use it in GitHub Desktop.
Save yemrekeskin/6634247 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
var m = new ScheduledTaskManager();
//m.AddAbsoluteTask(Testit, 42);
//m.AddAbsoluteTask(Testit, 9, 24);
m.AddSlidingTask(Testit, 1);
//m.AddSlidingTask(Testit, 1, 3);
Console.ReadLine();
}
static void Testit()
{
Console.WriteLine("Test it > Time : {0}", DateTime.Now);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment