M Morten Wennevik Sep 15, 2006 #2 Hi Maadhavi, There is no Do Until loop, but there is a Do While, which is basically the same. do { // stuff } while(condition is true);
Hi Maadhavi, There is no Do Until loop, but there is a Do While, which is basically the same. do { // stuff } while(condition is true);
G Guest Sep 15, 2006 #3 No, There isn't any Do-until loop in C#. C# provides only the following loop statements: while do-while for foreach
No, There isn't any Do-until loop in C#. C# provides only the following loop statements: while do-while for foreach
C Christof Nordiek Sep 15, 2006 #4 do { .... } while (!condition) is the eqivalent to Pascal(like pseudocode): do ... until condition
M Madhavi Sep 15, 2006 #5 Thank you all Maadhavi Christof said: do { .... } while (!condition) is the eqivalent to Pascal(like pseudocode): do ... until condition Click to expand...
Thank you all Maadhavi Christof said: do { .... } while (!condition) is the eqivalent to Pascal(like pseudocode): do ... until condition Click to expand...