8 writes to _baseSize
mscorlib (8)
system\collections\arraylist.cs (8)
2170_baseSize = count; 2191return _baseSize++; 2205_baseSize += count; 2241_baseSize = 0; 2393_baseSize++; 2407_baseSize += count; 2449_baseSize--; 2465_baseSize -= count;
37 references to _baseSize
mscorlib (37)
system\collections\arraylist.cs (37)
2189_baseList.Insert(_baseIndex + _baseSize, value); 2203_baseList.InsertRange(_baseIndex + _baseSize, c); 2213if (_baseSize - index < count) 2237if (_baseSize != 0) 2239_baseList.RemoveRange(_baseIndex, _baseSize); 2247Range arrayList = new Range(_baseList,_baseIndex,_baseSize); 2255for(int i=0; i<_baseSize; i++) 2261for(int i=0; i<_baseSize; i++) 2275if (array.Length - index < _baseSize) 2280_baseList.CopyTo(_baseIndex, array, index, _baseSize); 2292if (_baseSize - index < count) 2303return _baseSize; 2320return GetEnumerator(0,_baseSize); 2326if (_baseSize - index < count) 2337if (_baseSize - index < count) 2354int i = _baseList.IndexOf(value, _baseIndex, _baseSize); 2362if (startIndex > _baseSize) 2367int i = _baseList.IndexOf(value, _baseIndex + startIndex, _baseSize - startIndex); 2373if (startIndex < 0 || startIndex > _baseSize) 2376if (count < 0 || (startIndex > _baseSize - count)) 2387if (index < 0 || index > _baseSize) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 2397if (index < 0 || index > _baseSize) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 2414int i = _baseList.LastIndexOf(value, _baseIndex + _baseSize - 1, _baseSize); 2427if (_baseSize == 0) 2430if (startIndex >= _baseSize) 2443if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 2455if (_baseSize - index < count) 2472if (_baseSize - index < count) 2484if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 2494if (_baseSize - index < count) 2506if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 2511if (index < 0 || index >= _baseSize) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 2519Object[] array = new Object[_baseSize]; 2520Array.Copy(_baseList._items, _baseIndex, array, 0, _baseSize); 2531Array array = Array.UnsafeCreateInstance(type, _baseSize); 2532_baseList.CopyTo(_baseIndex, array, 0, _baseSize);