What is the difference between Windows.System.Threading.ThreadPool and System.Threading.ThreadPool?

The Windows Phone 8 SDK documentation does not describe the difference between the Windows.System.Threading.ThreadPool and System.Threading.ThreadPool . Is there a difference between the two, apart from the obvious API difference? For example, do they use a single thread pool? If there is a major difference that I should use and when?

+4
source share
1 answer

Windows.System.Threading.ThreadPool is "safe" for use in an XAML-based application. System.Threading.ThreadPool is the standard API available for all types of .net applications.

If you are developing a XAML application for WP8 or a Windows application store, use the version of Windows.System.

+1
source

Source: https://habr.com/ru/post/1495613/


All Articles