1 write to _list
mscorlib (1)
system\collections\arraylist.cs (1)
1493_list = list;
14 references to _list
mscorlib (14)
system\collections\arraylist.cs (14)
1498get { lock(_root) { return _list.Count; } } 1502get { return _list.IsReadOnly; } 1506get { return _list.IsFixedSize; } 1517return _list[index]; 1522_list[index] = value; 1533return _list.Add(value); 1540_list.Clear(); 1546return _list.Contains(item); 1552_list.CopyTo(array, index); 1558return _list.GetEnumerator(); 1564return _list.IndexOf(value); 1570_list.Insert(index, value); 1576_list.Remove(value); 1582_list.RemoveAt(index);