2 writes to _list
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (2)
1924_list = l; 1973arrayList._list = (ArrayList)_list.Clone();
21 references to _list
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (21)
1927public override int Count => _list.Count; 1933public override bool IsSynchronized => _list.IsSynchronized; 1937get => _list[index]; 1941public override object SyncRoot => _list.SyncRoot; 1955return _list.BinarySearch(index, count, value, comparer); 1961get => _list.Capacity; 1972ReadOnlyArrayList arrayList = new ReadOnlyArrayList(_list); 1973arrayList._list = (ArrayList)_list.Clone(); 1979return _list.Contains(obj); 1984_list.CopyTo(array, index); 1989_list.CopyTo(index, array, arrayIndex, count); 1994return _list.GetEnumerator(); 1999return _list.GetEnumerator(index, count); 2004return _list.IndexOf(value); 2009return _list.IndexOf(value, startIndex); 2014return _list.IndexOf(value, startIndex, count); 2029return _list.LastIndexOf(value); 2034return _list.LastIndexOf(value, startIndex); 2039return _list.LastIndexOf(value, startIndex, count); 2084return _list.ToArray(); 2090return _list.ToArray(type);