1 write to _list
mscorlib (1)
system\runtime\interopservices\windowsruntime\clrireferenceimpl.cs (1)
111
_list
= (IList) _value;
15 references to _list
mscorlib (15)
system\runtime\interopservices\windowsruntime\clrireferenceimpl.cs (15)
177
return
_list
[index];
182
_list
[index] = value;
188
return
_list
.Add(value);
193
return
_list
.Contains(value);
198
_list
.Clear();
205
return
_list
.IsReadOnly;
213
return
_list
.IsFixedSize;
219
return
_list
.IndexOf(value);
224
_list
.Insert(index, value);
229
_list
.Remove(value);
234
_list
.RemoveAt(index);
239
_list
.CopyTo(array, index);
246
return
_list
.Count;
254
return
_list
.SyncRoot;
262
return
_list
.IsSynchronized;