hungarian notation
In programming, a coding standard where all variables are tagged so you can tell their datatype by looking at the name. Microsoft likes hungarian notation, I do not. It is useful when naming GUI objects though.
nonhungarian notation:
int number;
string name;
double value;
-------------------------
hungarian notation
int nNumber;
string strName;
double dValue;
int number;
string name;
double value;
-------------------------
hungarian notation
int nNumber;
string strName;
double dValue;
hungarian notation by Dahhak October 13, 2004
Get the hungarian notation mug.