ThreadStart Delegate
Represents the method that executes on Thread objects.
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Syntax
public delegate void ThreadStart ()
Remarks
When you create a thread, the new Thread object is generated by a constructor that takes the ThreadStart delegate as its only parameter. However, the thread does not begin executing until the Start method is invoked. When Start is called, execution begins at the first line of the method referenced by the ThreadStart delegate.
Version Information
Available in the .NET Micro Framework versions 2.0, 2.5, 3.0, 4.0, 4.1, and 4.2.