2 writes to _list
mscorlib (2)
system\collections\arraylist.cs (2)
1668
_list
= l;
1727
arrayList.
_list
= (ArrayList)_list.Clone();
31 references to _list
mscorlib (31)
system\collections\arraylist.cs (31)
1669
_version =
_list
._version;
1673
get { return
_list
.Count; }
1677
get { return
_list
.IsReadOnly; }
1685
get { return
_list
.IsSynchronized; }
1690
return
_list
[index];
1693
_list
[index] = value;
1694
_version =
_list
._version;
1699
get { return
_list
.SyncRoot; }
1712
return
_list
.BinarySearch(index, count, value, comparer);
1716
get { return
_list
.Capacity; }
1726
FixedSizeArrayList arrayList = new FixedSizeArrayList(
_list
);
1727
arrayList._list = (ArrayList)
_list
.Clone();
1732
return
_list
.Contains(obj);
1736
_list
.CopyTo(array, index);
1741
_list
.CopyTo(index, array, arrayIndex, count);
1745
return
_list
.GetEnumerator();
1750
return
_list
.GetEnumerator(index, count);
1754
return
_list
.IndexOf(value);
1759
return
_list
.IndexOf(value, startIndex);
1764
return
_list
.IndexOf(value, startIndex, count);
1777
return
_list
.LastIndexOf(value);
1782
return
_list
.LastIndexOf(value, startIndex);
1787
return
_list
.LastIndexOf(value, startIndex, count);
1805
_list
.SetRange(index, c);
1806
_version =
_list
._version;
1821
_list
.Reverse(index, count);
1822
_version =
_list
._version;
1827
_list
.Sort(index, count, comparer);
1828
_version =
_list
._version;
1832
return
_list
.ToArray();
1837
return
_list
.ToArray(type);