Naming
November 1, 2013 ยท View on GitHub
Constants
Write constants in CamelCase, not UPPERCASE.
// Perfect.
const int LeftMargin = 10;
// No need to shout.
const int LEFT_MARGIN = 10;
November 1, 2013 ยท View on GitHub
Write constants in CamelCase, not UPPERCASE.
// Perfect.
const int LeftMargin = 10;
// No need to shout.
const int LEFT_MARGIN = 10;