Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
continue
break
for (int i = 0; i < 10; i++) { if (i == 4) { continue; } Console.WriteLine(i); }
0 1 2 3 5 6 7 8 9
for (int i = 0; i < 10; i++) { if (i == 4) { break; } Console.WriteLine(i); }
0 1 2 3