[Previous] [Contents] [Next]

Creating Threads and Thread Objects

You can instantiate a Thread object in two ways. You've already seen one way: creating a new thread and, in that process, getting a Thread object with which to manipulate the new thread. The other way to obtain a Thread object is by calling the static Thread.CurrentThread method for the currently executing thread.

[Previous] [Contents] [Next]