Created
May 7, 2010 14:38
-
-
Save jfromaniello/393496 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
Console.WriteLine("tell me how many seconds you want to expend doing something else than watching a number. I will beep to remind you"); | |
var seconds = int.Parse(Console.ReadLine()); | |
Thread.Sleep(TimeSpan.FromSeconds(seconds)); | |
Console.Beep(1000, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment