1 write to _list
System.Data.Entity (1)
System\Data\Common\Utils\ThreadSafeList.cs (1)
22
_list
= new List<T>();
12 references to _list
System.Data.Entity (12)
System\Data\Common\Utils\ThreadSafeList.cs (12)
34
count =
_list
.Count;
50
_list
.Add(item);
66
result =
_list
[index];
79
_list
[index] = value;
102
result =
_list
.IndexOf(item);
116
_list
.Insert(index, item);
129
_list
.RemoveAt(index);
142
_list
.Clear();
156
result =
_list
.Contains(item);
170
_list
.CopyTo(array, arrayIndex);
184
result =
_list
.Remove(item);
198
foreach (T value in
_list
)