static void Main(string[] args)
{
string x = string.Empty;
Task t = new Task(() => {
x = "dd";
});
Task<int> cT = t.ContinueWith<int>(gg => {
return 23;
});
t.Start();
Console.WriteLine(cT.Result);
Console.ReadLine();
}
結果:23. うん、ほしいよ。だから、私はすべてのタスクがC#で親タスクを持っていると言うことができます、そうですか?