Coding Conventions

From vb24
Revision as of 10:49, 19 April 2010 by Dec (talk | contribs) (Created page with '== Function Names == A function name * describes what the function does * starts with a verb * starts lowercase <syntaxhighlight lang="vb"> sub reportDifference() </syntaxhighli...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Names

A function name

  • describes what the function does
  • starts with a verb
  • starts lowercase
sub reportDifference()

Blank lines