Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ThreadStart.cs « System.Threading « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ebd6bc9f764daf46d8d248008b486d303494baa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// System.Threading.ThreadStart.cs
//
// Author:
//   Dick Porter (dick@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//


namespace System.Threading
{
	public delegate void ThreadStart();
}