votes
How to create a C# string ENUM which returns string instead of int?
I would like to have string enum, so in my colling class I could use somethink like this: [code] Class1.Status.Failure [/code] The return string should be "S". The enum declaration is as following: [code] class Class1 ...
