Skip to content

Instantly share code, notes, and snippets.

@marek-safar
Created April 12, 2012 07:42
Show Gist options
  • Save marek-safar/2365478 to your computer and use it in GitHub Desktop.
Save marek-safar/2365478 to your computer and use it in GitHub Desktop.
using System;
namespace testd
{
class MainClass
{
public int v;
public static void Main (string[] args)
{
var t = new System.Threading.Tasks.Task (() => Console.WriteLine ("a"));
t.Start ();
t.ContinueWith // Type ( here
return;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment