Can my enums have friendly names?

c#, enums

Solution

Enum value names must follow the same naming rules as all identifiers in C#, therefore only first name is correct.

Problem

I have the following `enum` ``` public enum myEnum { ThisNameWorks, This Name doesn't work Neither.does.this; } ``` Is it not possible to have `enum`s with "friendly names"?

Original source

Related problems