2008-03-05 09:52:00 -05:00
|
|
|
// ==++==
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// ==--==
|
|
|
|
/*=============================================================================
|
|
|
|
**
|
|
|
|
** Class: ThreadStart
|
|
|
|
**
|
|
|
|
** Purpose: This class is a Delegate which defines the start method
|
|
|
|
** for starting a thread. That method must match this delegate.
|
|
|
|
**
|
|
|
|
=============================================================================*/
|
|
|
|
|
2008-11-17 18:29:00 -05:00
|
|
|
namespace System.Threading
|
|
|
|
{
|
|
|
|
using System.Runtime.CompilerServices;
|
2008-03-05 09:52:00 -05:00
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
// Define the delegate
|
|
|
|
// NOTE: If you change the signature here, there is code in COMSynchronization
|
|
|
|
// that invokes this delegate in native.
|
|
|
|
//| <include path='docs/doc[@for="ThreadStart"]/*' />
|
2008-11-17 18:29:00 -05:00
|
|
|
[RequiredByBartok]
|
2008-03-05 09:52:00 -05:00
|
|
|
public delegate void ThreadStart();
|
|
|
|
}
|