Equivalent of ToString() on an enum type in C++/CLI
- by daffers
In C# you can declare an enum and once you have set its value call ToString on the variable and get a string representation of the value of the enum.
How do you do this in C++/CLI using a managed enum?