test.AccessFlag.cs 631 B

12345678910111213141516171819202122232425262728
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Changes to this file may cause incorrect behavior and will be lost if
  5. // the code is regenerated.
  6. // </auto-generated>
  7. //------------------------------------------------------------------------------
  8. namespace cfg.test
  9. {
  10. [System.Flags]
  11. public enum AccessFlag
  12. {
  13. WRITE = 1,
  14. READ = 2,
  15. TRUNCATE = 4,
  16. NEW = 8,
  17. /// <summary>
  18. /// 位标记使用示例
  19. /// </summary>
  20. READ_WRITE = WRITE|READ,
  21. }
  22. }