You will find the general rules for identifiying naming
PascalCase – public
camelCase – private, protected
Public classes, methods and properties – PascalCase
Private helper methods, input parameters – camelCase
Locally scoped variables – camelCase
Private field – camelCase prefixed w/ underscore: _firstName
Choose long, memorable, understandable names that convey meaning / intent.