I have an enum which i use in my app as follows:
public enum TaskStatus{
WaitinForApproval,
SubmittedForReview,
.....
}
When i display this on the page it displays :
SubmittedForReview
I would like to show it as
Submitted For Review
How this can be done without too much hassle?