Multiple Words
Use underscore and Case
Easy to read understand
Hungarian Notation
Prefix with something like sz
Hungarian notation is the practice of including a prefix in identifiers to encode some metadata about the parameter, such as the data type of the identifier.
Variable _name
Usually means private member variable.
Camel Case Naming convention
ThisIsName
Constants Variable
Use all uppercase.