0
comment
comment
on 10/25/2012 3:29 PM
In general, when you see async void in your code it’s bad news, because: you can’t wait for its completion (as mentioned in this post already) any unhandled exceptions will terminate your process (ouch!) Suppose you have a timer event that fires every once in a while and you want to do some asynchronous [...]