1 write to _list
mscorlib (1)
system\collections\generic\list.cs (1)
1047
_list
= list;
14 references to _list
mscorlib (14)
system\collections\generic\list.cs (14)
1054
return
_list
.Count;
1061
return ((ICollection<T>)
_list
).IsReadOnly;
1067
_list
.Add(item);
1073
_list
.Clear();
1079
return
_list
.Contains(item);
1085
_list
.CopyTo(array, arrayIndex);
1091
return
_list
.Remove(item);
1097
return
_list
.GetEnumerator();
1103
return ((IEnumerable<T>)
_list
).GetEnumerator();
1110
return
_list
[index];
1115
_list
[index] = value;
1122
return
_list
.IndexOf(item);
1128
_list
.Insert(index, item);
1134
_list
.RemoveAt(index);