3
Reply

Difference between background worker thread and foreground threads.

Sohini Dey

Sohini Dey

Jan 24, 2014
4.2k
0

    Backgrounder worker as name states runs separate from main thread and does not hang the main thread so its a async operation and a foreground thread is runs parallel to main thread.in short we can run foreground thread and background worker at the same time together.

    Vishal Jadav
    August 08, 2016
    0

    http://msdn.microsoft.com/en-us/library/h339syd0%28v=vs.110%29.aspx

    Khan Abrar Ahmed
    April 06, 2014
    0

    Backgroundworker threads are dead once the application exists whereas foreground threads complete the action even if the application closes.

    Sohini Dey
    January 24, 2014
    0