Begins execution at the ThreadStart that was supplied at construction.
[Visual Basic] Public Sub Start() [C#] public void Start(); [C++] public: void Start(); [JScript] public function Start();
Exception Type | Condition |
---|---|
ThreadStateException | The thread has already been started. |
SecurityException | The caller does not have the appropriate SecurityPermission. |
When Start is called, the new thread will begin executing at the ThreadStart delegate passed in the constructor. Once the thread is dead, it cannot be restarted with another call to Start.