📜  c# i++ 含义 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:54.886000             🧑  作者: Mango

代码示例1
// 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.