Testing asynchronous background workers in .NET
Posted on Tue 08 May 2012 in Coding • Tagged with async, background worker, test, .net
When you build a GUI, all lengthy operations that can be triggered by the user should take place on a background thread so that the GUI doesn’t become unresponsive. Why would it? Well, it’s because all GUI operations take place on a single thread - the GUI thread (the …
Continue reading