Increment
The increment operator is ++
and means “increase by one unit.”
If the plus signs are before the variable, the variable is incremented before it is used, and if the plus signs are after the variable, the variable is used, then incremented.
Sources:Larry O’Brien and Bruce Eckel Thinking in C# 2003. - 957 c. – 100