My enum consists of the following values:
private enum PublishStatusses{ NotCompleted, Completed, Error };
I want to be able to
In case you just want to add a whitespace between the words, it is as simple as
string res = Regex.Replace(PublishStatusses.NotCompleted, "[A-Z]", " $0").Trim();