Misc Flashcards
0
Q
Multiple Words
A
Use underscore and Case
Easy to read understand
1
Q
Hungarian Notation
A
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.
2
Q
Variable _name
A
Usually means private member variable.
3
Q
Camel Case Naming convention
A
ThisIsName
4
Q
Constants Variable
A
Use all uppercase.