Hi Manuel,
Could you please try the following? At the start of your application, set the number of threads in the thread pool to a higher number than the default. N can be the number of CPU cores available times two, or an even higher number:
ThreadPool.SetMinThreads(N, N);
Re-compile and re-run your application, and let me know if this addresses your issue.
Thanks,
Luke