1 write to _list
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (1)
1477
_list
= list;
14 references to _list
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (14)
1483
get { lock (_root) { return
_list
.Count; } }
1486
public bool IsReadOnly =>
_list
.IsReadOnly;
1488
public bool IsFixedSize =>
_list
.IsFixedSize;
1499
return
_list
[index];
1506
_list
[index] = value;
1517
return
_list
.Add(value);
1526
_list
.Clear();
1534
return
_list
.Contains(item);
1542
_list
.CopyTo(array, index);
1550
return
_list
.GetEnumerator();
1558
return
_list
.IndexOf(value);
1566
_list
.Insert(index, value);
1574
_list
.Remove(value);
1582
_list
.RemoveAt(index);