By default the thread pool in .NET works with background threads.
I can't change it to run as foreground.
How do I change this to run as foreground threads?
Edit:
I need to use this because I'm changing my App due high volume processing (before it I was manually handling threads, which are Foreground ones by default), and I don't want to change my Application just to adapt it to a background threading scenario..
I'm wondering why Thread pool is not Foreground by default