1 write to list
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (1)
299this.list = list;
5 references to list
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (5)
310if (array.Length - index < list.Count) 312for (DictionaryNode? node = list.head; node != null; node = node.next) 319int ICollection.Count => list.Count; 323object ICollection.SyncRoot => list.SyncRoot; 327return new NodeKeyValueEnumerator(list, isKeys);