Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 263 Bytes

DevelopmentNotes.md

File metadata and controls

5 lines (5 loc) · 263 Bytes

Coding Standards

  • Every local variable names start with "l_". Most of the time will be followed Hungarian notation.
  • Every parameter names in a method or function start with "par_"
  • Most property names start with "p_"
  • Global variable names start with "v_"