News

In the .Net Framework, the CLR is responsible for meting out resources to running applications. In particular, the CLR thread pool determines when threads are to be added or taken away.
There are two important classes here: ThreadManager and ManagedThread.Both extend from the Java Thread class. The ThreadManager holds a container which holds the ManagedThreads.When a new ...