1
vote
6answers
142 views
Javascript and CSS, using dashes
I'm starting to learn some javascript and understand that dashes are not permitted when naming identifiers. However, in CSS it's common to use a dash for IDs and classes.
Does using a dash in CSS …
0
votes
1answer
17 views
Variable names of unordered set items without implied structure
This question will be asked in a specific form, but applies to a more general question, how to name unordered set items without implying any sort of structure.
In terms of graph theory, a connected, …
3
votes
2answers
73 views
What is “POSNR” an abreviation or acronym for?
I'm working with some data that's coming out of an SAP system. There's a field named
POSNR
that appears to be a line item/database identifier of some kind. What is this an abbreviation for? It's …
0
votes
6answers
177 views
When, if ever, should the name of a property contain the name of the class?
public class Fruit
{
// choose one
public int Id { get; set; }
public int FruitId get; set; } // redundant or usefully more descriptive?
// choose one
public string Name { get; …
2
votes
11answers
239 views
Explanation of naming conventions for classes, methods and variables
I'm currently in University and they're pretty particular about following their standards.
They've told me this:
All classes must start with a capital
letter
Correct
public class MyClass {}
…
0
votes
6answers
394 views
Should I capitalize constructor names for my classes?
I use camel case which has the first letter of all variable names, functions, etc lowercased. But the class names are capitalized. Should I use:
class Foo
{
function foo()
{
}
}
or :
…
