What is the most efficient way to remove alternate (odd indexed or even indexed) elements in an List without using a place holder list variable?
List
A
for (int i=myList.length-1; i >= 0; i--) if (i % 2 == 0) myList.Remove(myList[i]);