Merge pull request #2216 from akoeplinger/fix-array-sort
[mono.git] / mcs / class / corlib / System / PlatformID.cs
index 2c7849e7095dee13a96dec5ca7918433e8689865..7839406bb82cb1d6cdfc1efbc6f079cb08be2c5f 100644 (file)
@@ -38,20 +38,17 @@ using System.Runtime.InteropServices;
 
 namespace System
 {
-#if NET_2_0
        [ComVisible (true)]
        [Serializable]
-#endif
        public enum PlatformID
        {
                Win32S = 0,
                Win32Windows = 1,
                Win32NT = 2,
-#if NET_1_1 || NET_2_0
                WinCE = 3,
-#endif
-#if NET_2_0
-               Unix = 4
-#endif
+               Unix = 4,
+               // Since NET 3.5 SP1 or silverlight
+               Xbox = 5,
+               MacOSX = 6,
        }
 }