TaskCreationOptions.LongRunning option and ThreadPool
问题 TPL uses Task Schedulers to coordinate tasks. According to official document, default task scheduler uses Thread Pool, but if TaskCreationOptions.LongRunning option is presented then it will create a dedicated thread for that task (A). Question: As of now MSDN documents for Visual Studio 2010 are not ready and current online MSDN is not finalized; does anyone knows if (A) is true or false? 回答1: Yes, LongRunning forces the creation of a new thread outside the pool. Here's some pseudo