Creates a new instance of the System.Threading.Thread class.
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
public static Thread CreateThread( ParameterizedThreadStart start )
Public Shared Function CreateThread ( _ start As ParameterizedThreadStart _ ) As Thread
public: static Thread^ CreateThread( ParameterizedThreadStart^ start )
public static Thread CreateThread( ParameterizedThreadStart start )
Parameters
- start (ParameterizedThreadStart)
- A System.Threading.ParameterizedThreadStart delegate that represents the methods to be invoked when this thread begins executing.
Return Value
A new Thread instance.