Advertisement
Guest User

Untitled

a guest
Jan 9th, 2015
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7.  
  8. class Program
  9. {
  10. static void Main()
  11. {
  12. Action f = testMethod; ;
  13. AsyncTimer test = new AsyncTimer(f, 10, 500);
  14. test.Run();
  15. string testString = Console.ReadLine();
  16.  
  17. }
  18. public static void testMethod()
  19. {
  20. Console.WriteLine("test");
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement