Creates a new instance of the System.Threading.Thread class.
![](../icons/collapse_all.gif)
C# | Visual Basic | Visual C++ | J# |
public static Thread CreateThread( ThreadStart start )
Public Shared Function CreateThread ( _ start As ThreadStart _ ) As Thread
public: static Thread^ CreateThread( ThreadStart^ start )
public static Thread CreateThread( ThreadStart start )
![](../icons/collapse_all.gif)
- start (ThreadStart)
- A System.Threading.ThreadStart delegate that represents the methods to be invoked when this thread begins executing.
![](../icons/collapse_all.gif)
A new Thread instance.