Open sushihangover opened 9 years ago
When incrementing a var, the shell shows the pre-increment value as the result/return:
pshell> var i:int = 0; pshell> i++; 0 pshell> i 1
The csharp shell exhibits the same behavior:
csharp> var i = 0; csharp> i++; 0 csharp> i 1
When incrementing a var, the shell shows the pre-increment value as the result/return:
The csharp shell exhibits the same behavior: