CJ Taylor said:
Alright,
Bring on the flames
What is pascal case? I think I know it, but after an argument today, I
quesiton myself and want to get the answer from some people.
Thanks,
CJ
First, an unsolicited plug for the Microsoft public newsgroups: I doubt you
need be concerned about getting flamed here. IME, the inhabitants here tend
to be far more civilized and helpful than the denizens of many alt. and
other groups. You're unlikely to find self-appointed off-topic police, etc.
here, for example.
As to your question: Assuming you are referring to the capitalization style
and not to the logic structure in Pascal, I found the following definition
in the Visual Studio .NET 2003 help:
"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:
BackColor
Camel case
The first letter of an identifier is lowercase and the first letter of each
subsequent concatenated word is capitalized. For example:
backColor"
I included the Camel case definition, on the off chance that has something
to do with the disagreement you mentioned.
Hope this helps.