the coder's point of view
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