Program.cs 468 B

1234567891011121314151617181920212223
  1. using System.Diagnostics.CodeAnalysis;
  2. using Terminal.Gui.Analyzers.Internal.Attributes;
  3. namespace Terminal.Gui.Analyzers.Internal.Debugging;
  4. static class Program
  5. {
  6. static void Main (string [] args)
  7. {
  8. }
  9. }
  10. [GenerateEnumExtensionMethods]
  11. [SuppressMessage ("Naming", "CA1711:Identifiers should not have incorrect suffix", Justification = "It's not that deep")]
  12. public enum TestEnum
  13. {
  14. Zero = 0,
  15. One,
  16. Two = 2,
  17. Three,
  18. Six = 6
  19. }