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