2 writes to _baseList
mscorlib (2)
system\collections\arraylist.cs (2)
2168
_baseList
= list;
2248
arrayList.
_baseList
= (ArrayList)_baseList.Clone();
34 references to _baseList
mscorlib (34)
system\collections\arraylist.cs (34)
2178
if (_baseVersion !=
_baseList
._version)
2189
_baseList
.Insert(_baseIndex + _baseSize, value);
2203
_baseList
.InsertRange(_baseIndex + _baseSize, c);
2218
int i =
_baseList
.BinarySearch(_baseIndex + index, count, value, comparer);
2225
return
_baseList
.Capacity;
2239
_baseList
.RemoveRange(_baseIndex, _baseSize);
2247
Range arrayList = new Range(
_baseList
,_baseIndex,_baseSize);
2248
arrayList._baseList = (ArrayList)
_baseList
.Clone();
2256
if (
_baseList
[_baseIndex + i]==null)
2262
if (
_baseList
[_baseIndex + i] != null &&
_baseList
[_baseIndex + i].Equals(item))
2280
_baseList
.CopyTo(_baseIndex, array, index, _baseSize);
2297
_baseList
.CopyTo(_baseIndex + index, array, arrayIndex, count);
2308
get { return
_baseList
.IsReadOnly; }
2312
get { return
_baseList
.IsFixedSize; }
2316
get { return
_baseList
.IsSynchronized; }
2331
return
_baseList
.GetEnumerator(_baseIndex + index, count);
2347
return
_baseList
.SyncRoot;
2354
int i =
_baseList
.IndexOf(value, _baseIndex, _baseSize);
2367
int i =
_baseList
.IndexOf(value, _baseIndex + startIndex, _baseSize - startIndex);
2381
int i =
_baseList
.IndexOf(value, _baseIndex + startIndex, count);
2391
_baseList
.Insert(_baseIndex + index, value);
2406
_baseList
.InsertRange(_baseIndex + index, c);
2414
int i =
_baseList
.LastIndexOf(value, _baseIndex + _baseSize - 1, _baseSize);
2435
int i =
_baseList
.LastIndexOf(value, _baseIndex + startIndex, count);
2447
_baseList
.RemoveAt(_baseIndex + index);
2463
_baseList
.RemoveRange(_baseIndex + index, count);
2477
_baseList
.Reverse(_baseIndex + index, count);
2485
_baseList
.SetRange(_baseIndex + index, c);
2499
_baseList
.Sort(_baseIndex + index, count, comparer);
2507
return
_baseList
[_baseIndex + index];
2512
_baseList
[_baseIndex + index] = value;
2520
Array.Copy(
_baseList
._items, _baseIndex, array, 0, _baseSize);
2532
_baseList
.CopyTo(_baseIndex, array, 0, _baseSize);