30.07.2012, 18:29
Quote:
Today I learned that using static to initialize variable inside a loop is much more efficient than using new.
|
This code:
Код:
new static variable;
Код:
static variable;
Today I learned that using static to initialize variable inside a loop is much more efficient than using new.
|
new static variable;
static variable;