Guest User

Untitled

a guest
Sep 26th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. using System;
  2.  
  3. namespace testd
  4. {
  5. class MainClass
  6. {
  7. public int v;
  8.  
  9. public static void Main (string[] args)
  10. {
  11. var t = new System.Threading.Tasks.Task (() => Console.WriteLine ("a"));
  12. t.Start ();
  13. t.ContinueWith // Type ( here
  14. return;
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment