I am working on a new project that involves government funding. As such we will have objects (classes, properties, methods) that reference government legislation which have names like Title II, Title IV-A, Title IX, Title XVI, etc.

We are following the Microsoft guidelines for names but Pascal/camel casing for those does not read nicely to my eyes at this point. With Pascal casing, I get classes named TitleIi, TitleIva, TitleIx TitleXvi. Camel casing gives me variables with titleIi, titleIva, titleIx, titleXvi.

Another option would be to use arabic numbers instead of the Roman numerals. That gives me Title2, Title4 which reads better but gives the impression that we have multiple instances of something (for example, AddressLine1 and AddressLine2).

I'm looking for suggestions on this.

link|improve this question
feedback

3 Answers

I suggest you do what is most readable in your code base. If camel casing is causing legibility issues, then don't follow that guideline in this instance.

They are only guidelines, not rules.

link|improve this answer
feedback

At the end of the day naming conventions are just that - "conventions".

In your example I would use title_IV_A or Title_IV_A - you'll be saving yourself a headache and making life easier on yourself.

link|improve this answer
Correct me if I am wrong but you can't use - in class/variable names? – Nix Jul 15 '11 at 12:44
You're not wrong - typo's corrected! – Barry Kaye Jul 15 '11 at 12:49
feedback

I'd just ignore the guidelines and name the classes TitleII, TitleIV_A etc. (note that you may need to replace the "-" by "_").

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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