You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
511 B

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Leit.Model
  7. {
  8. public enum DataFormat
  9. {
  10. //
  11. // 摘要:
  12. // 按照顺序排序
  13. ABCD = 0,
  14. //
  15. // 摘要:
  16. // 按照单字反转
  17. BADC = 1,
  18. //
  19. // 摘要:
  20. // 按照双字反转
  21. CDAB = 2,
  22. //
  23. // 摘要:
  24. // 按照倒序排序
  25. DCBA = 3
  26. }
  27. }