Constructor ThreadClass
ThreadClass()
Initializes a new instance of the ThreadClass class
Declaration
public ThreadClass()
ThreadClass(String)
Initializes a new instance of the Thread class.
Declaration
public ThreadClass(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the thread |
ThreadClass(ThreadStart)
Initializes a new instance of the Thread class.
Declaration
public ThreadClass(ThreadStart start)
Parameters
Type | Name | Description |
---|---|---|
ThreadStart | start | A ThreadStart delegate that references the methods to be invoked when this thread begins executing |
ThreadClass(ThreadStart, String)
Initializes a new instance of the Thread class.
Declaration
public ThreadClass(ThreadStart start, string name)
Parameters
Type | Name | Description |
---|---|---|
ThreadStart | start | A ThreadStart delegate that references the methods to be invoked when this thread begins executing |
System.String | name | The name of the thread |