StringEnum is a base class for creating string-valued enums in .NET.
Features
- Your StringEnum interface looks similar to a regular enum
- Provides static Parse() and TryParse() methods and implicit cast to string.
- Intellisense will suggest the enum name if the class is annotated with the xml...
More information