Mono Class Library: System.Threading Namespace

System.Threading.ThreadStart Delegate

Defines the shape of methods that are called when a System.Threading.Thread is started.
[System.Runtime.InteropServices.ComVisible(true)]
public delegate void ThreadStart ()

Remarks

Note: A new instance of the System.Threading.Thread class is created using a constructor that takes a System.Threading.ThreadStart delegate as its only parameter. When Thread.Start is invoked and the thread begins executing, all of the methods in the invocation list of the specified delegate are invoked in the execution context of the thread. If a method in the invocation list receives an unhandled exception, the thread is terminated, but not the process that contains the thread.

Note: For an example that demonstrates creating a ThreadStart delegate, see Thread.Start.

Requirements

Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0