This section is in english for simplicity.
For all variables we use Lower Camel Cases
string thisIsACorrectExample;
string ThisIsNotACorrectExample;
All private variables begin with underscore
private double _someNumber;
Describe the situation in which this guideline apply.
Provide destinct examples of how to code in the described situation
This is one way of doing it
some code example
This a another way of doing it
some other code example
Give a good reason to why we've chosen one of the variants.