Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3.     new Timer(TimerCallback, null, 1, 1000);
  4.     Console.ReadKey();
  5. }
  6.  
  7. static void TimerCallback(object state)
  8. {
  9.     Console.WriteLine("TimerCallback");
  10.     GC.Collect();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement