Created
March 15, 2011 17:34
-
-
Save chaliy/871098 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public Task<string> Task1(){ | |
return TaskEx.Start(() => "abc"). | |
ContinueWithTask(t => Task2(t.Result)); // <-- Question is here | |
} | |
public Task<string> Task2(string input){ | |
} | |
public void Usage(){ | |
var task1 = Task1(); | |
Console.WriteLine(task1.Result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment