Willem Odendaal

the coder's point of view

<November 2008>
SuMoTuWeThFrSa
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456


Navigation

I Read

Subscriptions

Post Categories



New Keyword

I learnt a new c# keyword today - continue.

In this code, while i > 10, ProcessTwo() will never be called.

for (int i = 0; i < 50; i++)
{
    ProcessOne();
    if (i > 10)
        continue;
    ProcessTwo();
}

posted on Thursday, April 07, 2005 7:20 AM by willemo





Powered by Dot Net Junkies, by Telligent Systems