2 writes to _list
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (2)
1665_list = l; 1718arrayList._list = (ArrayList)_list.Clone();
31 references to _list
System.Private.CoreLib (31)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (31)
1666_version = _list._version; 1669public override int Count => _list.Count; 1671public override bool IsReadOnly => _list.IsReadOnly; 1675public override bool IsSynchronized => _list.IsSynchronized; 1679get => _list[index]; 1682_list[index] = value; 1683_version = _list._version; 1687public override object SyncRoot => _list.SyncRoot; 1701return _list.BinarySearch(index, count, value, comparer); 1706get => _list.Capacity; 1717FixedSizeArrayList arrayList = new FixedSizeArrayList(_list); 1718arrayList._list = (ArrayList)_list.Clone(); 1724return _list.Contains(obj); 1729_list.CopyTo(array, index); 1734_list.CopyTo(index, array, arrayIndex, count); 1739return _list.GetEnumerator(); 1744return _list.GetEnumerator(index, count); 1749return _list.IndexOf(value); 1754return _list.IndexOf(value, startIndex); 1759return _list.IndexOf(value, startIndex, count); 1774return _list.LastIndexOf(value); 1779return _list.LastIndexOf(value, startIndex); 1784return _list.LastIndexOf(value, startIndex, count); 1804_list.SetRange(index, c); 1805_version = _list._version; 1820_list.Reverse(index, count); 1821_version = _list._version; 1826_list.Sort(index, count, comparer); 1827_version = _list._version; 1832return _list.ToArray(); 1838return _list.ToArray(type);