What is the difference between using
int port and int _port;
shafi
Variable name starting with '_' are mostly used by compiler developers, and system libraries, Indicating the special meaning or importance of that variable.
You can use it,but it creates other impression.
Better you use 'iPort'. It is much more readable.
Comment