Sunday, March 29, 2015

Running multiple awaited Tasks in order

The problem is that you have used 'async void'. You should not use 'async void' for methods/functions.


Change your method's signature to:


private async Task RSSReader()


And of course this method should be called asynchronously.




I'm a self-taught noob amateur. Please take this into account when responding to my posts or when taking advice from me.


No comments:

Post a Comment