Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

difference between while and do while in c#

//While statement
while ( condition) {
statements;  //body of loop
}
// do-while statement
do{
.
statements  // body of loop.
.
} while( Condition );
 
PREVIOUS NEXT
Tagged: #difference
ADD COMMENT
Topic
Name
2+1 =