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)
177return _list[index]; 182_list[index] = value; 188return _list.Add(value); 193return _list.Contains(value); 198_list.Clear(); 205return _list.IsReadOnly; 213return _list.IsFixedSize; 219return _list.IndexOf(value); 224_list.Insert(index, value); 229_list.Remove(value); 234_list.RemoveAt(index); 239_list.CopyTo(array, index); 246return _list.Count; 254return _list.SyncRoot; 262return _list.IsSynchronized;