Fields
Private fields have the _ prefix, static, const and public fields are in UpperCamelCase.
For example:
BAD:
GOOD:
Field Position
All fields should be at the top of the class, before any methods.
Last updated
Private fields have the _ prefix, static, const and public fields are in UpperCamelCase.
For example:
BAD:
GOOD:
All fields should be at the top of the class, before any methods.
Last updated