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