First of all, thank you for reading this document. I hope that it'll be helpful in any contributions you make to the library.
A .editorconfig
file is provided to help keep the style of the codebase consitent. However, I'd like to highlight a few things you should keep in mind.
- Try to use longer names rather than abbreviations.
- Prefer not to use
this.
. - Make property names descriptive, almost like a question. (eg.
IsDone
versusDone
). - You should place at least an XMLDOC
<summary>
on every public member.