Delphi Basics : Break command

Delphi Basics : Break command

瀏覽:461
日期:2025-10-05
Description The Break procedure forces a jump out of the setof statements within a loop. Like the Goto statement, it should be used with caution. The next statement that is executed is the one following the loop terminator. For example: for i := 1 to 10 d...看更多