If I use this: ```C# public enum PaymentMethodIgnore { [Description("Credit\"card")] Credit, [Description("Debit card")] Debit, Cash } ``` The generated code will not compile. Consider use [SymbolDisplay.FormatLiteral](https://learn.microsoft.com/en-us/dotnet/api/microsoft.codeanalysis.csharp.symboldisplay.formatliteral) to properly escape strings.