Possible Duplicate:
What does “for(;;)” do in C#?
what does
for (; ; )
{
// do something
}
mean in c#?
Isn't there supposed to be (initializer, condition, iterator) ?
I saw an example in a book that uses nothing inside the contents of the for loop.