Microsoft naming conventions for .Net put constants in Pascal Case. In fact, it explicitly tells us to avoid using all caps for constants:

You might also have to capitalize identifiers to maintain compatibility with existing, unmanaged symbol schemes, where all uppercase characters are often used for enumerations and constant values. In general, these symbols should not be visible outside of the assembly that uses them.

From MSDN.

On SO I found some questions on the subject, like this one, but I couldn't find a rationale. So, anyone know or have a reference that points to why MS chose this convention?

link|improve this question

7  
BECAUSE ALL-UPPERCASE IS HARD TO READ AND IT'S INTENDED FOR THE PRECOMPILER, WHICH .NET DOESN'T EVEN HAVE. – Steven Sudit Sep 23 '10 at 22:37
3  
Also, it's just ugly. – Bennor McCarthy Sep 23 '10 at 22:42
Ok, I'll make it an official answer. – Steven Sudit Sep 23 '10 at 22:42
feedback

5 Answers

up vote 3 down vote accepted

Its just a style guideline. Programming languages have started to recommend and push formatting conventions so that code is more readable.

Also, symbols that get substituted by the preprocessor deserve special attention-- they live outside/before the type system and may not be what they appear to be. Constants are just constants, they won't change at compile or runtime.

link|improve this answer
If you think about the history, uppercase was used for C preprocessor symbols, so when C++ came out and had const, those symbols were kept mixed case. C# and Java both come from C++, so they follow the C++ convention. – Steven Sudit Sep 23 '10 at 22:45
On a side note, let's not forget that a const is purely compile-time while a static readonly is there at runtime, which is why only the former is allowed as a default value in C# 4. – Steven Sudit Sep 23 '10 at 22:50
On second reading, I have a nit to pick: the purpose of naming standards and formatting conventions isn't just to make code more readable but to make it mutually intelligible. There's no great reason why .NET recommends MixedCase for methods instead of camelCase, but if everyone uses the same one of these two choices, we can read each other's code without getting confused or annoyed. It's like driving on the right side of the street instead of the left: doesn't really matter, so long as everyone picks the same side. – Steven Sudit Sep 23 '10 at 22:53
Yes I agree, and that was my intention, "more readable", by others, not just the original author. If people are not having to constantly adjust to different styles they can absorb the semantics of the code quicker-- especially if it was not written by them. And this is a stance taken by C# and Python notably, greater gains (for everyone) are realized from a consistent style than allowing the flexibility of any style like C/C++. – user318904 Sep 24 '10 at 17:24
feedback

BECAUSE ALL-UPPERCASE IS UGLY AND HARD TO READ AND IT'S INTENDED FOR THE PRECOMPILER, WHICH .NET DOESN'T EVEN HAVE.

Also, Bill Gates wants it that way, and money is never wrong.

link|improve this answer
Stole the "ugly" from Bennor; giving credit. – Steven Sudit Sep 23 '10 at 22:43
2  
And with Resharper (maybe even VS) you can type MCVTNC for MyConstantValueThatNeverChanges, but that won't work for all caps. – PostMan Sep 23 '10 at 22:47
I don't think that the acronym works in the selection list, at least not for VS 2008. – Steven Sudit Sep 23 '10 at 22:49
feedback

Just as a BTW -- EBCDIC is the extended version of BCD (binary coded decimal), and as such certainly supports lower case. It's the 60s vintage and earlier IBM machines (and others) that did not include lower case.

(And, of course, early home computers like the TRS-80 didn't have lower case, either)

link|improve this answer
You're right: EBCDIC does support lower-case. However, as far as I can remember, the punch-card machines I used with the IBM 370 did not offer any way to enter lower-case characters. – Steven Sudit Jan 19 '11 at 19:37
feedback

Microsoft doesn't following its own rules because if you reflect over the new System.Threading.Tasks classes in c# 4 YOU_WILL_FIND_LOTS_OF_CAP_CONSTANTS.

Its a style thing. Personally I don't mind. Just be consistent.

link|improve this answer
It's true; if you look at .Net internals, you also find lots of m_ usages, despite this being evil, forbidden Hungarian notation. – Steven Sudit Jan 6 '11 at 21:27
feedback

Saying that all caps is ugly and thus should not be used is borderline childish logic. It comes from people complaining about what they are not used to.

Having gone from Java to C, I started using underscores_between_words in variable names and functions. camelCase is extremely ugly to me now. But I still use camelCase for C++/Java without complaining because it is convension.

If you can't make yourself flexible, programming will become a harsh mistress. That is the skill of a programmer.

link|improve this answer
No, it's objectively bad: all-uppercase is simply hard to read. I started with all-uppercase because that's the only option under EBCDIC. Now that we have mixed-case, case-sensitive languages using ASCII, we have better options. – Steven Sudit Jan 6 '11 at 21:29
@Steven: I have to disagree. Pizzach is right -- ALL_UPPER is just text, and I haven't heard of a statistic that proved it's harder to read than small case. I'd make just one quick note, having underscores separating words costs one more character in the word, so we have "wider" or "lengthier" code, which is bad. – Bruno Brant Jan 7 '11 at 18:59
@Bruno: Capital letters are more similar in shape than lower-case ones, which is why they're harder to read. To quote Wikipedia, "owever, long spans of Latin-alphabet text in all upper-case are harder to read because of the absence of the ascenders and descenders found in lower-case letters, which can aid recognition." – Steven Sudit Jan 7 '11 at 19:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.