In this chapter, we talked about many features that .NET Framework offers that we can use in our applications. However, we didn't cover this topic in detail. Therefore, it may be useful for you to go through a couple of MSDN articles so that you can understand more about these concepts. Take a look at the following links:
- More on application domains can be found at https://docs.microsoft.com/en-us/dotnet/framework/app-domains/application-domains#application-domains-and-threads.
- More on threads and processes can be found at https://docs.microsoft.com/en-us/windows/desktop/procthread/processes-and-threads.
- The following documentation on parallel programming will help you understand some of the topics that we didn't cover in this chapter: https://docs.microsoft.com/en-us/dotnet/standard/parallel-programming/for-further-reading-parallel-programming.
- One...