Skip to content

Code Standard

MrJackey edited this page Nov 17, 2020 · 1 revision

Naming

  • Classes should use PascalCase.
  • Functions should use PascalCase.
  • Variables should use camelCase.
  • Properties should use PascalCase.
  • Interfaces should use IPascalCase.

Formatting

  • Use tabs instead of spaces.
  • Place '{' on the same line.
  • Prefer trailing commas.
  • Prefer specifying private or public.

Clone this wiki locally