In .NET, when you make an asynchronous call, I understand that this call is allowed in a separate thread, thereby not blocking the original thread where the call was made.
How mechanics work behind this. Is a new thread spawned for each asynchronous call, or is there a common async thread that handles these operations? If this is a shared thread, make several asynchronous calls blocking each other at run time. And if separate threads arise, will the application not experience serious performance problems due to too many threads running at the same time if many asynchronous calls are made during the same time interval.
source
share