c# best way to loop and remove

49

c# best way to loop and remove -

for (int i = safePendingList.Count - 1; i >= 0; i--)
{
    // some code
    // safePendingList.RemoveAt(i);
}

Comments

Submit
0 Comments