Skip to content

Instantly share code, notes, and snippets.

@kumpera
Created December 6, 2011 21:28
Show Gist options
  • Save kumpera/1440086 to your computer and use it in GitHub Desktop.
Save kumpera/1440086 to your computer and use it in GitHub Desktop.
using System;
using System.Threading;
class Driver {
static void Main () {
var timer = new Timer (o => Console.WriteLine ("o2"), null, new TimeSpan (1042, 0, 0, 0), new TimeSpan (0,0,1));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment