My enum consists of the following values:

private enum PublishStatusses{
    NotCompleted,
    Completed,
    Error
};

I want to be able to output these values in a user friendly way though.
I don’t need to be able to go from string to value again.

24 Answers
24

Leave a Reply

Your email address will not be published. Required fields are marked *