2 writes to _list
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (2)
1924
_list
= l;
1973
arrayList.
_list
= (ArrayList)_list.Clone();
21 references to _list
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (21)
1927
public override int Count =>
_list
.Count;
1933
public override bool IsSynchronized =>
_list
.IsSynchronized;
1937
get =>
_list
[index];
1941
public override object SyncRoot =>
_list
.SyncRoot;
1955
return
_list
.BinarySearch(index, count, value, comparer);
1961
get =>
_list
.Capacity;
1972
ReadOnlyArrayList arrayList = new ReadOnlyArrayList(
_list
);
1973
arrayList._list = (ArrayList)
_list
.Clone();
1979
return
_list
.Contains(obj);
1984
_list
.CopyTo(array, index);
1989
_list
.CopyTo(index, array, arrayIndex, count);
1994
return
_list
.GetEnumerator();
1999
return
_list
.GetEnumerator(index, count);
2004
return
_list
.IndexOf(value);
2009
return
_list
.IndexOf(value, startIndex);
2014
return
_list
.IndexOf(value, startIndex, count);
2029
return
_list
.LastIndexOf(value);
2034
return
_list
.LastIndexOf(value, startIndex);
2039
return
_list
.LastIndexOf(value, startIndex, count);
2084
return
_list
.ToArray();
2090
return
_list
.ToArray(type);