Skip to content

Instantly share code, notes, and snippets.

@jfromaniello
Created May 7, 2010 14:38
Show Gist options
  • Save jfromaniello/393496 to your computer and use it in GitHub Desktop.
Save jfromaniello/393496 to your computer and use it in GitHub Desktop.
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