6 writes to index
mscorlib (6)
system\collections\arraylist.cs (6)
2554this.index = -1; 2571currentElement = list._items[++index]; 2576index =list._size; 2582currentElement = list[++index]; 2586index = list.Count; 2615index = -1;
3 references to index
mscorlib (3)
system\collections\arraylist.cs (3)
2570if (index < list._size - 1) { 2581if (index < list.Count - 1) { 2597if (index == -1) {