0
What does init stands for?
3 Réponses
0
guess its initial value
0
Yes, init is short for initialize and it would be the variable you're creating for the loop; or in other words, initializing a variable within the for loop's statement.
0
int stands for Initialize
object myObject = new object(); . Initialize means to give an initial value to. In some languages, if you don't initialize a variable it will have arbitrary (dirty/garbage) data in it. In C# it is actually a compile-time error to read from an uninitialized variable.