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