12 references to _list
Microsoft.CodeAnalysis.Scripting (12)
Hosting\SynchronizedList.cs (12)
23
return
_list
[index];
31
_list
[index] = value;
42
return
_list
.Count;
53
_list
.Add(item);
61
_list
.Clear();
69
return
_list
.Contains(item);
77
_list
.CopyTo(array, arrayIndex);
86
return ((IEnumerable<T>)
_list
.ToArray()).GetEnumerator();
96
return
_list
.IndexOf(item);
104
_list
.Insert(index, item);
112
return
_list
.Remove(item);
120
_list
.RemoveAt(index);