### Environment - Pythonnet version: All - Python version: 2.7 - Operating System: Mono ### Details - Print string name of an enum from python. ```python // in C# enum NamePrinting { Test, Name } // in python: self.A = "A" + str(NamePrinting.Test) print A // A1 not "ATest" like in C#. ``` Is it possible to get the text string name instead of the integer?