Pascal <-> C# | Break statement

Pascal

break

Description

break ;
Used keywords: break

Examples

Pascal

Even one example in what situations we can use the operation break statement:
i:=10;
repeat dec(i) until not i > 0;
repeat
  inc(i);
  if i=5 then
    break;
until not i <10;
.
C#

break

Description

break ;
Used keywords: break

Examples

C#

Even one example in what situations we can use the operation break statement:
i=10;
do --i; while ( i > 0);
do {
  i++;
  if (i==5)
    break;
} while ( i <10);
Languages: en hu cz sk