Possible Duplicate:
What are the best naming conventions you've used?
This is not about a matter of opinion, it's about the merit of choosing suitable given the context names. I don't see it as a possible duplicate becuase the focus is not on convention. (reopen)
My colleagues wants to name things based on factors such as type information and category to classify the names, I disagree completely and think variables, objects and types (classes) should have short descriptive names, not reiterate parts of the formal grammar.
e.g.
- Whenever possible, I try to pick the name that makes most sense in plain English.
- I favor
PersonFilteroverFilterPersonwhen it's a type (class) but not if it's an action (function or method) - I prefer not to prefix my variables with contextual information, such as p for parameter, or _ for member variables (fields)
- I would never include type information in my variables, e.g. tbFirstName (TextBox firstName) the type is given by it's declaration, not the name.
- I would never prefix my variables with some arbitrary name because I want to group them close together in the IntelliSense (auto-completion) window
I'm working primarily with C# in this case, and understand that other languages which do not benefit from static typing might have other concerns, however, I feel that the support from the IDE (Visual Studio) makes a lot of these old conventions unnecessary and simply ugly.
To be perfectly clear, a static language has a lot of type information available at compile-time which makes prefixes based on type redundant. To date, the IntelliSense engine used by Microsoft in Visual Studio does a fair job, but it could do better. (this is not possible when types are resolved at run-time, ergo, it's only natural to assume that different naming conventions apply to statically and dynamically typed languages, however, I might as well argue the point that there should be no difference at all, just because of that fact)
Given the context of this question, we're do you disagree or agree and is there merit to these arguments?