Wednesday, July 30, 2014

The thread '<No Name>' (0x12f8) has exited with code 0 (0x0). on await

Issue on Await: The thread '<No Name>' (0x12f8) has exited with code 0 (0x0). on await

This is thread deadlock issue. To avoid this issue, you should use ConfigureAwait(false) to make the runtime continue in a different thread.

await Task.WhenAll(aAsync, bAsync).ConfigureAwait(false);


No comments:

Post a Comment

React-select is very slow on larger list - Found solution - using react-window

 I had more than 4000 items in searchable dropdownlist. I have used react-select but it was very slow. finally I found complete solution to ...