May 2004
Intermediate to advanced
888 pages
22h 31m
English
The .NET Framework has a rich collection of classes and enumerations that are needed for writing multithreaded applications, which are located in the System.Threading namespace.
Directly inheriting from the System.Object class, the Thread class provides the necessary methods for creating, aborting, suspending, and resuming threads. In addition, several properties exist for controlling the priority and determining other useful information. Listing 14.1 contains a partial definition of the Thread class.
System.Threading.Thread = class(System.Object) public constructor Create(start: ThreadStart); procedure Start; // terminate ... |
Read now
Unlock full access