09-04-2009, 01:51 PM
Just curious why you don't use some .net short-hand assignments?
An example of a short hand assignment:
I see a few through your code that you could use.
An example of a short hand assignment:
Code:
a = a + 1
Code:
a += 1
I see a few through your code that you could use.