Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 746 Bytes

CONTRIBUTING.md

File metadata and controls

14 lines (10 loc) · 746 Bytes

How to contribute

Contributions are quite welcome, though some rules should be followed!

C# Coding Style

The general rule we follow is "use Visual Studio defaults".

  1. Use Allman style braces
  2. Use four spaces of indentation (no tabs)
  3. Use _camelCase private members and use readonly where possible
  4. Avoid this. unless absolutely necessary
  5. Always specify the visiblity, even if it's the default (i.e. private string _foo not string _foo)
  6. Namespace imports should be specified at the top of the file, outside of namespace declarations and should be sorted alphabetically, with System. namespaces at the top and blank lines between different top level groups