2 writes to _list
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (2)
1923_list = l; 1972arrayList._list = (ArrayList)_list.Clone();
21 references to _list
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (21)
1926public override int Count => _list.Count; 1932public override bool IsSynchronized => _list.IsSynchronized; 1936get => _list[index]; 1940public override object SyncRoot => _list.SyncRoot; 1954return _list.BinarySearch(index, count, value, comparer); 1960get => _list.Capacity; 1971ReadOnlyArrayList arrayList = new ReadOnlyArrayList(_list); 1972arrayList._list = (ArrayList)_list.Clone(); 1978return _list.Contains(obj); 1983_list.CopyTo(array, index); 1988_list.CopyTo(index, array, arrayIndex, count); 1993return _list.GetEnumerator(); 1998return _list.GetEnumerator(index, count); 2003return _list.IndexOf(value); 2008return _list.IndexOf(value, startIndex); 2013return _list.IndexOf(value, startIndex, count); 2028return _list.LastIndexOf(value); 2033return _list.LastIndexOf(value, startIndex); 2038return _list.LastIndexOf(value, startIndex, count); 2083return _list.ToArray(); 2089return _list.ToArray(type);