I use VS2010 and C# to build a desktop application. This application has one form with a huge task which takes a lot of time to complete. When this form is initialized it w
You need to run your huge task on a background thread so as not to lock up the UI (main) thread.