1 write to _list
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (1)
1478
_list
= list;
14 references to _list
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (14)
1484
get { lock (_root) { return
_list
.Count; } }
1487
public bool IsReadOnly =>
_list
.IsReadOnly;
1489
public bool IsFixedSize =>
_list
.IsFixedSize;
1500
return
_list
[index];
1507
_list
[index] = value;
1518
return
_list
.Add(value);
1527
_list
.Clear();
1535
return
_list
.Contains(item);
1543
_list
.CopyTo(array, index);
1551
return
_list
.GetEnumerator();
1559
return
_list
.IndexOf(value);
1567
_list
.Insert(index, value);
1575
_list
.Remove(value);
1583
_list
.RemoveAt(index);