2 writes to _list
mscorlib (2)
system\collections\arraylist.cs (2)
1926_list = l; 1984arrayList._list = (ArrayList)_list.Clone();
21 references to _list
mscorlib (21)
system\collections\arraylist.cs (21)
1930get { return _list.Count; } 1942get { return _list.IsSynchronized; } 1947return _list[index]; 1955get { return _list.SyncRoot; } 1968return _list.BinarySearch(index, count, value, comparer); 1973get { return _list.Capacity; } 1983ReadOnlyArrayList arrayList = new ReadOnlyArrayList(_list); 1984arrayList._list = (ArrayList)_list.Clone(); 1989return _list.Contains(obj); 1993_list.CopyTo(array, index); 1998_list.CopyTo(index, array, arrayIndex, count); 2002return _list.GetEnumerator(); 2007return _list.GetEnumerator(index, count); 2011return _list.IndexOf(value); 2016return _list.IndexOf(value, startIndex); 2021return _list.IndexOf(value, startIndex, count); 2034return _list.LastIndexOf(value); 2039return _list.LastIndexOf(value, startIndex); 2044return _list.LastIndexOf(value, startIndex, count); 2086return _list.ToArray(); 2091return _list.ToArray(type);