I wonder if there is any way to increment variables?
I don't want to use
anymore
Is it a good idea (performance?) to write a function like
Thanks for help!
I don't want to use
Visual Basic:
x =x + 1
Is it a good idea (performance?) to write a function like
Visual Basic:
Public Sub Inc(ByRef Data As Integer)
Data = Data + 1
End Sub
Thanks for help!