标签: loops c#-3.0 nested-loops
例如:
for(int i = 0; i <=5; i++) { if(i==0) { for(int j = 0; j<=5; j++) { //Do something... } } }