I have a problem with async-await expression which returns wrong result.

private Task<int> A
{
    get
    {
        return TaskEx.RunEx<int>(async () =>
        {
            Thread.Sleep(10000);
            return 2;
        });
    }
}

private Task<int> B
{
    get
    {
        return TaskEx.RunEx<int>(async () =>
        {
            Thread.Sleep(4000);
            return 4;
        });
    }
}

private string SumAll(int a, int b)
{
    return (a + b).ToString();
}

Now, when I want to sum properties A and B by launching SumAll method I get the result 4 where I should get 6. Below you can find a code which does not work.

private async void Sum_Click(object sender, RoutedEventArgs e)
{
    this.Result.Text = this.SumAll(await A, await B);
}

When, I do the same example with the method below I got the right result.

private async void Sum_Click(object sender, RoutedEventArgs e)
{
    var a = await A;
    var b = await B;
    this.Result.Text = this.SumAll(a, b);
}

BTW. I know that the best way would be to use WhenAll method, but I am learing. Thank you for your answers

link|improve this question

43% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Yes, this is a known bug with the CTP (my blog; Lucian Wischik's blog). It'll be fixed in the full release.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.