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)
1227
return
_list
.Capacity;
1233
_list
.Capacity = value;
1239
get { lock(_root) { return
_list
.Count; } }
1243
get { return
_list
.IsReadOnly; }
1247
get { return
_list
.IsFixedSize; }
1258
return
_list
[index];
1263
_list
[index] = value;
1274
return
_list
.Add(value);
1280
_list
.AddRange(c);
1286
return
_list
.BinarySearch(value);
1292
return
_list
.BinarySearch(value, comparer);
1299
return
_list
.BinarySearch(index, count, value, comparer);
1305
_list
.Clear();
1311
return new SyncArrayList((ArrayList)
_list
.Clone());
1317
return
_list
.Contains(item);
1323
_list
.CopyTo(array);
1329
_list
.CopyTo(array, index);
1336
_list
.CopyTo(index, array, arrayIndex, count);
1342
return
_list
.GetEnumerator();
1349
return
_list
.GetEnumerator(index, count);
1355
return
_list
.IndexOf(value);
1362
return
_list
.IndexOf(value, startIndex);
1369
return
_list
.IndexOf(value, startIndex, count);
1375
_list
.Insert(index, value);
1382
_list
.InsertRange(index, c);
1388
return
_list
.LastIndexOf(value);
1395
return
_list
.LastIndexOf(value, startIndex);
1402
return
_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);
1442
return
_list
.GetRange(index, count);
1448
_list
.Sort();
1454
_list
.Sort(comparer);
1461
_list
.Sort(index, count, comparer);
1467
return
_list
.ToArray();
1474
return
_list
.ToArray(type);
1480
_list
.TrimToSize();