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)
1498
get { lock(_root) { return
_list
.Count; } }
1502
get { return
_list
.IsReadOnly; }
1506
get { return
_list
.IsFixedSize; }
1517
return
_list
[index];
1522
_list
[index] = value;
1533
return
_list
.Add(value);
1540
_list
.Clear();
1546
return
_list
.Contains(item);
1552
_list
.CopyTo(array, index);
1558
return
_list
.GetEnumerator();
1564
return
_list
.IndexOf(value);
1570
_list
.Insert(index, value);
1576
_list
.Remove(value);
1582
_list
.RemoveAt(index);