OSName.cs 768 B

12345678910111213141516171819202122232425262728293031323334
  1. //************************************************************************
  2. // author: yuzhengyang
  3. // date: 2018.3.27 - 2018.6.3
  4. // desc: 工具描述
  5. // Copyright (c) yuzhengyang. All rights reserved.
  6. //************************************************************************
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. namespace Azylee.Core.WindowsUtils.InfoUtils
  12. {
  13. public enum OSName
  14. {
  15. Unknown,
  16. Windows95,
  17. Windows98Fc,
  18. Windows98,
  19. WindowsMe,
  20. WindowsNT351,
  21. WindowsNT40,
  22. Windows2000,
  23. WindowsXP,
  24. Windows2003,
  25. Windows2008,
  26. Windows7,
  27. Windows8Or81,
  28. Windows10,
  29. }
  30. }