Advertisement
Guest User

Untitled

a guest
May 7th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. Task Test()
  2. {
  3.     var tcs = new TaskCompletionSource<object>();
  4.     var timer = new System.Threading.Timer(
  5.         _ => {
  6.                  tcs.SetCompleted(null); timer.Dispose();
  7.              }, null, 600, System.Threading.Timeout.Infinite);
  8.     return tcs.Task;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement