Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 252 Bytes

File metadata and controls

14 lines (11 loc) · 252 Bytes

keywords: Block Loop, Block While

Block While

Migrated Code Examples:

u.StartBlockLoop();
while(u.AdvanceBlockLoop() &&(u.LoopCounter() <= 10))
{
    Num2.SilentSet(Num2 + u.LoopCounter());
}
u.EndBlockLoop();