1 write to _list
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (1)
1150
_list
= list;
40 references to _list
System.Private.CoreLib (40)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (40)
1160
return
_list
.Capacity;
1167
_list
.Capacity = value;
1174
get { lock (_root) { return
_list
.Count; } }
1177
public override bool IsReadOnly =>
_list
.IsReadOnly;
1179
public override bool IsFixedSize =>
_list
.IsFixedSize;
1190
return
_list
[index];
1197
_list
[index] = value;
1208
return
_list
.Add(value);
1216
_list
.AddRange(c);
1224
return
_list
.BinarySearch(value);
1232
return
_list
.BinarySearch(value, comparer);
1240
return
_list
.BinarySearch(index, count, value, comparer);
1248
_list
.Clear();
1256
return new SyncArrayList((ArrayList)
_list
.Clone());
1264
return
_list
.Contains(item);
1272
_list
.CopyTo(array);
1280
_list
.CopyTo(array, index);
1288
_list
.CopyTo(index, array, arrayIndex, count);
1296
return
_list
.GetEnumerator();
1304
return
_list
.GetEnumerator(index, count);
1312
return
_list
.IndexOf(value);
1320
return
_list
.IndexOf(value, startIndex);
1328
return
_list
.IndexOf(value, startIndex, count);
1336
_list
.Insert(index, value);
1344
_list
.InsertRange(index, c);
1352
return
_list
.LastIndexOf(value);
1360
return
_list
.LastIndexOf(value, startIndex);
1368
return
_list
.LastIndexOf(value, startIndex, count);
1376
_list
.Remove(value);
1384
_list
.RemoveAt(index);
1392
_list
.RemoveRange(index, count);
1400
_list
.Reverse(index, count);
1408
_list
.SetRange(index, c);
1416
return
_list
.GetRange(index, count);
1424
_list
.Sort();
1432
_list
.Sort(comparer);
1440
_list
.Sort(index, count, comparer);
1448
return
_list
.ToArray();
1457
return
_list
.ToArray(type);
1465
_list
.TrimToSize();