Can my enums have friendly names? [duplicate]

I have the following enum

public enum myEnum
{
    ThisNameWorks, 
    This Name doesn't work
    Neither.does.this;
}

Is it not possible to have enums with “friendly names”?

13 Answers
13

Leave a Comment