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