Created
December 6, 2011 21:28
-
-
Save kumpera/1440086 to your computer and use it in GitHub Desktop.
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
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