Notationer
Generelt om Naming Conventions:
http://en.wikipedia.org/wiki/Identifier_naming_convention
Hungarian Notation:
iVariable, strVariable, objVariable;
http://en.wikipedia.org/wiki/Hungarian_notation
CamelBack Notation:
inputVariable, outputVariable, stringBuilderObject;
http://en.wikipedia.org/wiki/CamelCase
All Caps Notation:
INPUT_VARIABLE, OUTPUT_VARIABLE, STRING_BUILDER_OBJECT;
Nye kommentarer