1 write to _list
mscorlib (1)
system\collections\arraylist.cs (1)
802_list = list;
50 references to _list
mscorlib (50)
system\collections\arraylist.cs (50)
807get { return _list.Count; } 815get { return _list.Count; } 819get { return _list.IsReadOnly; } 823get { return _list.IsFixedSize; } 828get { return _list.IsSynchronized; } 833return _list[index]; 836_list[index] = value; 842get { return _list.SyncRoot; } 846int i = _list.Add(obj); 871int r = comparer.Compare(value, _list[mid]); 887if(_list.IsFixedSize) { 891_list.Clear(); 898return new IListWrapper(_list); 902return _list.Contains(obj); 906_list.CopyTo(array, index); 922if (_list.Count - index < count) 926array.SetValue(_list[i], arrayIndex++); 930return _list.GetEnumerator(); 937if (_list.Count - index < count) 944return _list.IndexOf(value); 949return IndexOf(value, startIndex, _list.Count - startIndex); 960if (_list[i] == null) 965if (_list[i] != null && _list[i].Equals(value)) 972_list.Insert(index, obj); 983ArrayList al = _list as ArrayList; 993_list.Insert(index++, en.Current); 1001return LastIndexOf(value,_list.Count - 1, _list.Count); 1011if (_list.Count == 0) 1014if (startIndex < 0 || startIndex >= _list.Count) throw new ArgumentOutOfRangeException("startIndex", Environment.GetResourceString("ArgumentOutOfRange_Index")); 1020if (_list[i] == null) 1025if (_list[i] != null && _list[i].Equals(value)) 1038_list.RemoveAt(index); 1046if (_list.Count - index < count) 1053_list.RemoveAt(index); 1062if (_list.Count - index < count) 1069Object tmp = _list[i]; 1070_list[i++] = _list[j]; 1071_list[j--] = tmp; 1082if (index < 0 || index > _list.Count - c.Count) { 1089_list[index++] = en.Current; 1099if (_list.Count - index < count) 1108if (_list.Count - index < count) 1115_list[i+index] = array[i]; 1123_list.CopyTo(array, 0); 1133Array array = Array.UnsafeCreateInstance(type, _list.Count); 1134_list.CopyTo(array, 0);