1 write to _list
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (1)
1149_list = list;
40 references to _list
System.Private.CoreLib (40)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (40)
1159return _list.Capacity; 1166_list.Capacity = value; 1173get { lock (_root) { return _list.Count; } } 1176public override bool IsReadOnly => _list.IsReadOnly; 1178public override bool IsFixedSize => _list.IsFixedSize; 1189return _list[index]; 1196_list[index] = value; 1207return _list.Add(value); 1215_list.AddRange(c); 1223return _list.BinarySearch(value); 1231return _list.BinarySearch(value, comparer); 1239return _list.BinarySearch(index, count, value, comparer); 1247_list.Clear(); 1255return new SyncArrayList((ArrayList)_list.Clone()); 1263return _list.Contains(item); 1271_list.CopyTo(array); 1279_list.CopyTo(array, index); 1287_list.CopyTo(index, array, arrayIndex, count); 1295return _list.GetEnumerator(); 1303return _list.GetEnumerator(index, count); 1311return _list.IndexOf(value); 1319return _list.IndexOf(value, startIndex); 1327return _list.IndexOf(value, startIndex, count); 1335_list.Insert(index, value); 1343_list.InsertRange(index, c); 1351return _list.LastIndexOf(value); 1359return _list.LastIndexOf(value, startIndex); 1367return _list.LastIndexOf(value, startIndex, count); 1375_list.Remove(value); 1383_list.RemoveAt(index); 1391_list.RemoveRange(index, count); 1399_list.Reverse(index, count); 1407_list.SetRange(index, c); 1415return _list.GetRange(index, count); 1423_list.Sort(); 1431_list.Sort(comparer); 1439_list.Sort(index, count, comparer); 1447return _list.ToArray(); 1456return _list.ToArray(type); 1464_list.TrimToSize();