What is the maximum number of threads that you can create in a C # application for the Windows 8 Metro interface? And what happens when you reach this limit? Is any exception thrown?
I think there is no limit. The maximum number of threads is determined by the number of available resources.
And, as Henk said, if you need to ask what the maximum number of threads is, you are probably doing something wrong.
Threads are very expensive. You should focus on creating as little as possible.
What happens when you reach this limit?
Your computer will slow down long before this limit is reached.
Is an exception of some kind?
OOM, most likely, if the user does not first throw the computer out of the window.
Before you create one thread, ask yourself if you can use threadpool .
Source: https://habr.com/ru/post/1433970/More articles:Select a date in UIDatePicker by UIAutomation? - iosHow can I let the user perform other user functions? - oracleBouncy Castle for iOS (Goal C) - iosInsulation Level Display - sybase-aseAndroid webview does not play mp4 video on one page - androidHow to make UITextView text available to everyone and show copy option for iPhone application for iPhone? - iosJava / MongoDB message length error on Windows but not Linux - javaAnt - How to exclude Java test files? - javaHow to dynamically decide how many cycles I want? - javaDoesn't work - htmlAll Articles