using System;
using System.Runtime.InteropServices;
namespace System
{
/// Identifies the operating system, or platform, supported by an assembly.
/// 2
// Token: 0x0200069F RID: 1695
[ComVisible(true)]
[Serializable]
public enum PlatformID
{
/// The operating system is Win32s. Win32s is a layer that runs on 16-bit versions of Windows to provide access to 32-bit applications.
// Token: 0x04001998 RID: 6552
Win32S,
/// The operating system is Windows 95 or Windows 98.
// Token: 0x04001999 RID: 6553
Win32Windows,
/// The operating system is Windows NT or later.
// Token: 0x0400199A RID: 6554
Win32NT,
/// The operating system is Windows CE.
// Token: 0x0400199B RID: 6555
WinCE,
/// The operating system is Unix.
// Token: 0x0400199C RID: 6556
Unix,
/// The development platform is Xbox 360.
// Token: 0x0400199D RID: 6557
Xbox,
/// The operating system is Macintosh.
// Token: 0x0400199E RID: 6558
MacOSX
}
}