3 instantiations of DebugViewDictionaryItem
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\IDictionaryDebugView.cs (1)
27items[i] = new DebugViewDictionaryItem<TKey, TValue>(keyValuePairs[i]);
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
595array[index++] = new DebugViewDictionaryItem<object, object?>(keyv, lbuckets[i].val);
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (1)
430array[index++] = new DebugViewDictionaryItem<object, object?>(node.key, node.value);
8 references to DebugViewDictionaryItem
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\IDictionaryDebugView.cs (2)
18public DebugViewDictionaryItem<TKey, TValue>[] Items 24var items = new DebugViewDictionaryItem<TKey, TValue>[keyValuePairs.Length];
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (4)
585internal virtual DebugViewDictionaryItem<object, object?>[] ToDebugViewDictionaryItemArray() 587var array = new DebugViewDictionaryItem<object, object?>[_count]; 1385internal override DebugViewDictionaryItem<object, object?>[] ToDebugViewDictionaryItemArray() 1509public DebugViewDictionaryItem<object, object?>[] Items => _hashtable.ToDebugViewDictionaryItemArray();
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (2)
422public DebugViewDictionaryItem<object, object?>[] Items 426var array = new DebugViewDictionaryItem<object, object?>[_list.count];