Advertisement
Guest User

Untitled

a guest
Jun 29th, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2. using System.Threading;
  3.  
  4. namespace ConsoleApplication1
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             var timer = new Timer(o => Console.WriteLine("{0}: Ring!!!", DateTime.Now), null, TimeSpan.Zero, new TimeSpan(0, 0, 30));
  11.             while (true)
  12.                 Thread.Yield();
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement