im new to this and would like to develop sound programming practices.
i am wondering if members of an Enum declaration should be all uppercase or just the first letter?
thank you.
im new to this and would like to develop sound programming practices.
i am wondering if members of an Enum declaration should be all uppercase or just the first letter?
thank you.
MSDN - Enumeration Type Naming Guidelines
Use Pascal case for Enum types and value names.
And a definition of Pascal case:
The first letter in the identifier and the first letter of each subsequent concatenated word are capitalized. You can use Pascal case for identifiers of three or more characters.
For example: BackgroundColor
For future reference, Microsoft provides extensive naming guidelines for almost everything. You can find them at: