mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
21 lines
300 B
C#
21 lines
300 B
C#
using Terminal.Gui.Analyzers.Internal.Attributes;
|
|
|
|
namespace Terminal.Gui.Analyzers.Internal.Debugging;
|
|
|
|
class Program
|
|
{
|
|
static void Main (string [] args)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
[GenerateEnumExtensionMethods]
|
|
public enum TestEnum
|
|
{
|
|
Zero = 0,
|
|
One,
|
|
Two = 2,
|
|
Three,
|
|
Six = 6
|
|
} |