1 write to list
mscorlib (1)
system\collections\objectmodel\readonlycollection.cs (1)
31this.list = list;
14 references to list
mscorlib (14)
system\collections\objectmodel\readonlycollection.cs (14)
35get { return list.Count; } 39get { return list[index]; } 43return list.Contains(value); 47list.CopyTo(array, index); 51return list.GetEnumerator(); 55return list.IndexOf(value); 60return list; 69get { return list[index]; } 97return ((IEnumerable)list).GetEnumerator(); 107ICollection c = list as ICollection; 142list.CopyTo(items, index); 166int count = list.Count; 169objects[index++] = list[i]; 187get { return list[index]; }