ECMA-334 C# Language Specification15.8.2: The do statement |
The do statement conditionally executes an embedded statement one or more times.
embedded-statement
while (
boolean-expression
)
;
A do statement is executed as follows:
boolean-expression
(14.16) is evaluated. If the boolean expression yields true, control is transferred to the beginning of the do statement. Otherwise, control is transferred to the end point of the do statement. Within the embedded statement of a do statement, a break statement (15.9.1) may be used to transfer control to the end point of the do statement (thus ending iteration of the embedded statement), and a continue statement (15.9.2) may be used to transfer control to the end point of the embedded statement (thus performing another iteration of the do statement).
The embedded statement of a do statement is reachable if the do statement is reachable.
The end point of a do statement is reachable if at least one of the following is true: