c# for loop backwards

50

c# loop backwards -

for (int i = myArray.Length; i --> 0; )
{
    //do something
}

Comments

Submit
0 Comments