Guest User

Untitled

a guest
Oct 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. CancellationTokenSource cts = new CancellationTokenSource();
  2. ManualResetEventSlim mre = new ManualResetEventSlim();
  3.  
  4. mre.Wait(cts.Token);
  5.  
  6. cts.Cancel();
  7. mre.Set();
Add Comment
Please, Sign In to add comment