yBother2
yBother2
I did not finish studiying but this is really interesting. I still find it hard to believe that async void is generally evil since it is explicetly said (see referenced...
I just wrote a very simple test that basically proofs you right: ``` var list = Enumerable.Range(0, 10).ToList(); list.ForEach( async x => { try { if (x % 2 ==...
> It's more just about the fact that it is hard or impossible to properly handle exceptions when you are calling an `async void` method. If you are _writing_ an...