2 writes to _list
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (2)
1665
_list
= l;
1718
arrayList.
_list
= (ArrayList)_list.Clone();
31 references to _list
System.Private.CoreLib (31)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (31)
1666
_version =
_list
._version;
1669
public override int Count =>
_list
.Count;
1671
public override bool IsReadOnly =>
_list
.IsReadOnly;
1675
public override bool IsSynchronized =>
_list
.IsSynchronized;
1679
get =>
_list
[index];
1682
_list
[index] = value;
1683
_version =
_list
._version;
1687
public override object SyncRoot =>
_list
.SyncRoot;
1701
return
_list
.BinarySearch(index, count, value, comparer);
1706
get =>
_list
.Capacity;
1717
FixedSizeArrayList arrayList = new FixedSizeArrayList(
_list
);
1718
arrayList._list = (ArrayList)
_list
.Clone();
1724
return
_list
.Contains(obj);
1729
_list
.CopyTo(array, index);
1734
_list
.CopyTo(index, array, arrayIndex, count);
1739
return
_list
.GetEnumerator();
1744
return
_list
.GetEnumerator(index, count);
1749
return
_list
.IndexOf(value);
1754
return
_list
.IndexOf(value, startIndex);
1759
return
_list
.IndexOf(value, startIndex, count);
1774
return
_list
.LastIndexOf(value);
1779
return
_list
.LastIndexOf(value, startIndex);
1784
return
_list
.LastIndexOf(value, startIndex, count);
1804
_list
.SetRange(index, c);
1805
_version =
_list
._version;
1820
_list
.Reverse(index, count);
1821
_version =
_list
._version;
1826
_list
.Sort(index, count, comparer);
1827
_version =
_list
._version;
1832
return
_list
.ToArray();
1838
return
_list
.ToArray(type);