Using for Loops in X++: Syntax and Examples
☰Fullscreen
Table of Content:
Syntax
for (i = initialValue; i < endValue ; i++) { // Loop body; Statement(s); }
Flowchart
Example
// for loop example static void Examples(Args _args) { int i; for (i = 0; i < 10; i++) { info("Welcome to atnyla! "); } }