9. Coding Conventions - 101127308/Battleships GitHub Wiki

Follow the official Microsoft guide for C# coding conventions, save for the following exceptions:

  • Indentations should be one tab. Do not indent with spaces.
  • Line length should not be longer than 80-100 characters. Insert linebreaks where most logical.
  • Curly brackets should be opened on the line of the declaration i.e.

int foo(bar){

}