B
Beeeeeves
Is it true that in C# you can only have initializers of one type in a for
loop?
For instance I can put
for(int a = 1, b = 2; a < b; a++)
but I can't have
for(int a = 1, string b = "yo"; a < 10; a++)
loop?
For instance I can put
for(int a = 1, b = 2; a < b; a++)
but I can't have
for(int a = 1, string b = "yo"; a < 10; a++)