This is an old revision of the document!
Table of Contents
<term YAGNI>You Ain't Gunna Need It</term>
Stephen's Coding Standards
Commented Code
No commented code, unless there is a comment clearly explaining under what circumstances the code should be uncommented. The YAGNI principle should be kept in mind. If there are no circumstances in which the code should be uncommented, it should be deleted.
Justification: Commented code adds no value to the source. It does not clarify or explain functionality. It is old rubbish that should be removed. Source control is for looking at old code.
Comments
Comments should be
- complete sentences,
- on their own line, at the current indent
- grammatically correct, spelt correctly and have the correct punctuation (including a capital letter at the start and a full stop at the end).
Names
Developer names should not appear in code.
Justification: The code belongs to the company not the individual developers that wrote it. Names in code encourages an attitude of certain developers 'owning' certain parts of the code or particular parts of functionality of the system. It also discourages other developers from changing the code due to a fear of standing on someone's toes. At TallGuyProgramming Inc, all developers are free to change any part of the code and developer specialisation is strongly discouraged.
Comma Separated Lists
Where a comma separated list is spilt over multiple lines, the commas should be prepended to the item. The first item should be indented, then have two spaces, then the item. Subsequent items should be indented, have a comma, have a space and then the item.
→ ••Item one → ,•Item two → ,•Item three
Tabs Versus Spaces
Use tabs to indent, spaces to align. Tabs should only appear at the beginning of a line. No arguments, no debates, this is how things are done at TallGuyProgramming Inc.
SELECT → ··Name·········AS·CustomerName → ,·CreatedDate··AS·OrginalCreatedDate FROM → Customers
Date Format
In all internal documents, code comments etc. dates will be written in the ISO 8601 format, i.e.:
yyyy-MM-dd
For example, 2001-01-01, 1956-12-31.
No other date formats are acceptable. The year shall not be abbreviated to two digits. The separator shall not be a slash or a comma or anything else. And don't even think about putting the year, month and day in a different order.
Note: This does not mean that software will use this format to display dates to the user. Dates displayed to the user should follow the system's regional settings.
When a date is used in a file name, directory name or source control tag or branch, the following variant of the ISO 8601 format will be used (and almost always prepended):
yyyyMMdd
For example, 20010101, 19561231.
Line Length
No line of code shall exceed 130 characters in length. Tabs count as four characters in this context. Use the Col value in the lower right of Visual Studio.
To get a visual margin guide in Visual Studio 2010, ensure the Productivity Power Tools extension is installed, right click the 130th column and select Guidelines → Add Guidelines from the context menu.
Unnecessary Parentheses
Code shall not contain unnecessary parentheses. Developers are expected to be able to use C# operator precedence and SQL operator precedence to construct expressions that evaluate in the correct order without unnecessary parentheses.
String Comparisons
The standard comparison operators (==, !=, <, >, <=, >=) shall not be used for string comparisons. The String.Equals()
and String.Compare()
methods should be used instead.
When using the String.Equals()
, String.Compare()
or String.IndexOf()
method, the StringComparison option shall always be specified.
The String.ToUpper()
, String.ToUpperInvariant()
, String.ToLower()
or String.ToLowerInvariant()
method shall never be used to do a case insensitive comparison. Use the IgnoreCase
version of the StringComparison
option.
Which StringComparison should be used?
- To do a comparison like a machine, use
StringComparison.Ordinal
orStringComparison.OrdinalIgnoreCase
. - To do a comparison like a human, use
StringComparison.CurrentCulture
orStringComparison.CurrentCultureIgnoreCase
. - It is extremely unlikely that
StringComparison.InvariantCulture
orStringComparison.InvariantCultureIgnoreCase
would ever need to be used.
The German alphabet has the letter 'ß', which basically means 'double S'. So a German-speaking human will see 'Boss' and 'Boß' as meaning exactly the same thing. A machine won't:
String.Compare("Boss", "Boß", StringComparison.Ordinal); // = false String.Compare("Boss", "Boß", StringComparison.CurrentCulture); // = true
(In this example it does not seem to matter what the current culture is set to, but there will be other examples where it does.)