Normally each person takes their own "calligraphy" to write code, however, is there a "standard" or any way that you feel clear and easy to allow the code becomes "readable" by any programmer who is using your code?
Personally I use (a simple example):
if (myVar == 5)
{
// easy to identify where the IF was launched, IMHO.
}
Instead of:
if(myVar == 5){
//
}