1 write to _list
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (1)
1149
_list
= list;
40 references to _list
System.Private.CoreLib (40)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (40)
1159
return
_list
.Capacity;
1166
_list
.Capacity = value;
1173
get { lock (_root) { return
_list
.Count; } }
1176
public override bool IsReadOnly =>
_list
.IsReadOnly;
1178
public override bool IsFixedSize =>
_list
.IsFixedSize;
1189
return
_list
[index];
1196
_list
[index] = value;
1207
return
_list
.Add(value);
1215
_list
.AddRange(c);
1223
return
_list
.BinarySearch(value);
1231
return
_list
.BinarySearch(value, comparer);
1239
return
_list
.BinarySearch(index, count, value, comparer);
1247
_list
.Clear();
1255
return new SyncArrayList((ArrayList)
_list
.Clone());
1263
return
_list
.Contains(item);
1271
_list
.CopyTo(array);
1279
_list
.CopyTo(array, index);
1287
_list
.CopyTo(index, array, arrayIndex, count);
1295
return
_list
.GetEnumerator();
1303
return
_list
.GetEnumerator(index, count);
1311
return
_list
.IndexOf(value);
1319
return
_list
.IndexOf(value, startIndex);
1327
return
_list
.IndexOf(value, startIndex, count);
1335
_list
.Insert(index, value);
1343
_list
.InsertRange(index, c);
1351
return
_list
.LastIndexOf(value);
1359
return
_list
.LastIndexOf(value, startIndex);
1367
return
_list
.LastIndexOf(value, startIndex, count);
1375
_list
.Remove(value);
1383
_list
.RemoveAt(index);
1391
_list
.RemoveRange(index, count);
1399
_list
.Reverse(index, count);
1407
_list
.SetRange(index, c);
1415
return
_list
.GetRange(index, count);
1423
_list
.Sort();
1431
_list
.Sort(comparer);
1439
_list
.Sort(index, count, comparer);
1447
return
_list
.ToArray();
1456
return
_list
.ToArray(type);
1464
_list
.TrimToSize();