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)
1160return _list.Capacity; 1167_list.Capacity = value; 1174get { lock (_root) { return _list.Count; } } 1177public override bool IsReadOnly => _list.IsReadOnly; 1179public override bool IsFixedSize => _list.IsFixedSize; 1190return _list[index]; 1197_list[index] = value; 1208return _list.Add(value); 1216_list.AddRange(c); 1224return _list.BinarySearch(value); 1232return _list.BinarySearch(value, comparer); 1240return _list.BinarySearch(index, count, value, comparer); 1248_list.Clear(); 1256return new SyncArrayList((ArrayList)_list.Clone()); 1264return _list.Contains(item); 1272_list.CopyTo(array); 1280_list.CopyTo(array, index); 1288_list.CopyTo(index, array, arrayIndex, count); 1296return _list.GetEnumerator(); 1304return _list.GetEnumerator(index, count); 1312return _list.IndexOf(value); 1320return _list.IndexOf(value, startIndex); 1328return _list.IndexOf(value, startIndex, count); 1336_list.Insert(index, value); 1344_list.InsertRange(index, c); 1352return _list.LastIndexOf(value); 1360return _list.LastIndexOf(value, startIndex); 1368return _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); 1416return _list.GetRange(index, count); 1424_list.Sort(); 1432_list.Sort(comparer); 1440_list.Sort(index, count, comparer); 1448return _list.ToArray(); 1457return _list.ToArray(type); 1465_list.TrimToSize();