SmokingCookie
Senior Member
Posts: 815 Reputation: 15
30 / /
Joined: Jul 2007
|
RE: Saving Settings
quote: Originally posted by Leroux
I knew not to trust you, seeing through what I'm doing . quote:
Yea, you use meaningful variable names
About the !MessengerStart thingy..
The exclamation sign is the "NOT" operator. So if you have MyVar = false; then !MyVar will be true. You can basically think of the NOT operator "inveting" a boolean.
Also, code controlled by "if(true)" will always be executed (I know it sounds self-explaining ). if(!false) will also be executed. (false will be invertedby the "!").
|
|