2 writes to _list
mscorlib (2)
system\collections\arraylist.cs (2)
1668_list = l; 1727arrayList._list = (ArrayList)_list.Clone();
31 references to _list
mscorlib (31)
system\collections\arraylist.cs (31)
1669_version = _list._version; 1673get { return _list.Count; } 1677get { return _list.IsReadOnly; } 1685get { return _list.IsSynchronized; } 1690return _list[index]; 1693_list[index] = value; 1694_version = _list._version; 1699get { return _list.SyncRoot; } 1712return _list.BinarySearch(index, count, value, comparer); 1716get { return _list.Capacity; } 1726FixedSizeArrayList arrayList = new FixedSizeArrayList(_list); 1727arrayList._list = (ArrayList)_list.Clone(); 1732return _list.Contains(obj); 1736_list.CopyTo(array, index); 1741_list.CopyTo(index, array, arrayIndex, count); 1745return _list.GetEnumerator(); 1750return _list.GetEnumerator(index, count); 1754return _list.IndexOf(value); 1759return _list.IndexOf(value, startIndex); 1764return _list.IndexOf(value, startIndex, count); 1777return _list.LastIndexOf(value); 1782return _list.LastIndexOf(value, startIndex); 1787return _list.LastIndexOf(value, startIndex, count); 1805_list.SetRange(index, c); 1806_version = _list._version; 1821_list.Reverse(index, count); 1822_version = _list._version; 1827_list.Sort(index, count, comparer); 1828_version = _list._version; 1832return _list.ToArray(); 1837return _list.ToArray(type);