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

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


namespace System.Threading
{
	public enum ApartmentState {
		STA = 0,
		MTA = 1,
		Unknown = 2
	}
}