Answers for "c# i++ meaning"

C#
0

c# i++ meaning

// i++  means 'tell me the value of i, then increment'
// ++i  means 'increment i, then tell me the value'

int i = 0;
Console.WriteLine(i++); // Prints 0. Then value of "i" becomes 1.
Console.WriteLine(--i); // Value of "i" becomes 0. Then prints 0.
Posted by: Guest on March-24-2021

C# Answers by Framework

Browse Popular Code Answers by Language