1
vote
1answer
4 views
Is there a recommended C# naming convention for situations similar to where “EX” is postpended to class and method names in C++?
Long explanation aside, I have a situation where I need to basically re-implement a .NET framework class in order to extend the behavior in a manner that is not compatible with an …
1
vote
2answers
131 views
Custom naming conventions in Fluent NHibernate AutoMapping
Hello,
according to this Post it is possible to change the naming convention from "[TableName]_id" to "[TableName]ID". However when I saw the code, I wasn't able to do it with my …
10
votes
8answers
1k views
Naming Conventions for Unit Tests
What are some popular naming conventions for Unit Tests?
General
Follow the same standards for all tests.
Be clear about what each test state is.
Be specific about the expected …
0
votes
4answers
56 views
Should a class have the same name as the namespace?
I'm designing a namespace to hold a set of classes that will handle user related tasks for a several different applications. (Log-in, authenticate etc)
The problem is the namespac …
21
votes
27answers
3k views
Table Naming Dilemma: Singular vs. Plural Names
Convention has it that table names should be the singular of the entity that they store attributes of.
I dislike any T-SQL that requires square brackets around names, but I have …
1
vote
7answers
130 views
Whats the best way to name id & classes in CSS and HTML
When naming classes and ids for CSS what is the best method to use. In this case I need there to be some kind of naming convention so that other people can pick up rules and unders …
1
vote
6answers
120 views
What is the current scheme for naming variables and functions?
Is there a standard way to name them or is it programmer's call?
Thank you.
2
votes
2answers
31 views
naming convention for shell script and makefile
hi, yet another newbie question
i have a few makefiles that store shared variables, such as CC=gcc , how should i name them ?
candidates are
common.mk
Make.common
Makefile.common …
7
votes
9answers
313 views
Why are generics called generics?
At the risk of becoming the village idiot, can someone explain to me why generics are called generics? I understand their usage and benefits, but if the definition of generic is " …
0
votes
2answers
16 views
Safe to have page resources without file extensions?
I need to decide on naming conventions for a new website.
I can use mod_rewrite at will.
My favourite solution would be to work with no file extension at all.
www.exampledomain.c …
0
votes
3answers
212 views
Enforce File Naming Convention on Windows Share?
Hi Everyone,
Simple question, but I can't seem to find the answer anywhere. Is there a way in Windows, or via a third-party utility, to enforce file naming conventions within a W …
0
votes
7answers
139 views
C++ naming: read_input() vs. readInput()
Hi,
Which naming convention is more preferable in C++? The `underscore' method or the camelCase method?
I have coded in Java for a while and I am used to the camelCase naming conv …
-1
votes
9answers
147 views
How do you like your naming conventions?
I looked at MSDN .NET Naming Guidelines about 2 years ago and i remember not liking certain things. Now that i used .NET more i cant remember what they were nor have complaints now …
0
votes
10answers
89 views
What’s the best possible name for a backup server in a development environment? [closed]
Hi,
I run an office network and we have many servers. We try to give them nice server names regarding their functions, avoiding stupid names like 'dev01' or stuff like that.
…
0
votes
4answers
55 views
Should I keep the package name when extending a class?
I plan to extend a JSF renderer. The package name is oracle.adfinternal.view.faces.renderkit.rich
Should the extended class be in the same package structure:
oracle.adfinternal.vi …
