1 write to _list
mscorlib (1)
system\collections\arraylist.cs (1)
1220_list = list;
40 references to _list
mscorlib (40)
system\collections\arraylist.cs (40)
1227return _list.Capacity; 1233_list.Capacity = value; 1239get { lock(_root) { return _list.Count; } } 1243get { return _list.IsReadOnly; } 1247get { return _list.IsFixedSize; } 1258return _list[index]; 1263_list[index] = value; 1274return _list.Add(value); 1280_list.AddRange(c); 1286return _list.BinarySearch(value); 1292return _list.BinarySearch(value, comparer); 1299return _list.BinarySearch(index, count, value, comparer); 1305_list.Clear(); 1311return new SyncArrayList((ArrayList)_list.Clone()); 1317return _list.Contains(item); 1323_list.CopyTo(array); 1329_list.CopyTo(array, index); 1336_list.CopyTo(index, array, arrayIndex, count); 1342return _list.GetEnumerator(); 1349return _list.GetEnumerator(index, count); 1355return _list.IndexOf(value); 1362return _list.IndexOf(value, startIndex); 1369return _list.IndexOf(value, startIndex, count); 1375_list.Insert(index, value); 1382_list.InsertRange(index, c); 1388return _list.LastIndexOf(value); 1395return _list.LastIndexOf(value, startIndex); 1402return _list.LastIndexOf(value, startIndex, count); 1408_list.Remove(value); 1414_list.RemoveAt(index); 1421_list.RemoveRange(index, count); 1428_list.Reverse(index, count); 1435_list.SetRange(index, c); 1442return _list.GetRange(index, count); 1448_list.Sort(); 1454_list.Sort(comparer); 1461_list.Sort(index, count, comparer); 1467return _list.ToArray(); 1474return _list.ToArray(type); 1480_list.TrimToSize();