E
Emilio
Dim xy As Integer
xy = 1
MsgBox(++xy)
Why is ++xy not considered a syntax error. Does it do anything?
(it doesn't increment xy, as c# programmers might expect)
xy = 1
MsgBox(++xy)
Why is ++xy not considered a syntax error. Does it do anything?
(it doesn't increment xy, as c# programmers might expect)