Share via


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 .NET Micro Framework version 2.0, 2.5

See Also

Reference

System.Threading Namespace