Advertisement
Guest User

Untitled

a guest
Jul 9th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1.     class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             Task.Run(async () =>
  6.             {
  7.                 while (true)
  8.                 {
  9.                     await Task.Delay(100);
  10.                     Console.WriteLine("DATA REFRESHED");
  11.                 }
  12.             });
  13.  
  14.             Console.ReadLine();
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement