PlatformID.cs 665 B

12345678910111213141516171819
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System.ComponentModel;
  5. namespace System
  6. {
  7. public enum PlatformID
  8. {
  9. [EditorBrowsable(EditorBrowsableState.Never)] Win32S = 0,
  10. [EditorBrowsable(EditorBrowsableState.Never)] Win32Windows = 1,
  11. Win32NT = 2,
  12. [EditorBrowsable(EditorBrowsableState.Never)] WinCE = 3,
  13. Unix = 4,
  14. [EditorBrowsable(EditorBrowsableState.Never)] Xbox = 5,
  15. [EditorBrowsable(EditorBrowsableState.Never)] MacOSX = 6
  16. }
  17. }