Guest User

Untitled

a guest
Jan 9th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1.         public Form1() {
  2.             InitializeComponent();
  3.             System.Timers.Timer t = new System.Timers.Timer();
  4.             t.Interval = 2000;
  5.             t.Elapsed += delegate { Debug.WriteLine(VKCodeToUnicode(0x41)); };
  6.             t.AutoReset = true;
  7.             t.Start();
  8.         }
Add Comment
Please, Sign In to add comment