Alright, and think really hard about this one; if you use a value stored in a variable, and you later change the variable, does it change everything where you used the previous value of the variable?
That's right, it doesn't, because it's not dynamic under any circumstance. If you type in
@obliviron: Go
Alright, and think really hard about this one; if you use a value stored in a variable, and you later change the variable, does it change everything where you used the previous value of the variable?
That's right, it doesn't, because it's not dynamic under any circumstance. If you type in
X = 5
Variable = new Variable[X]
it'll be the exact equivalent of using
Variable = new Variable[5]
This is not dynamic, ever.