I\'m working on some C# code that has loop syntax that I\'ve never seen before:
for (;;)
{
//Do some stuff
}
What does a for loop without
for (;;)
Short answer: It is an infinite loop which is equivalent to while(true)
Long answer: for (initializer; condition; iterator)
Structure of the for statement
for(;;) example from official documentation