2 instantiations of DictionaryItemDebugView
Microsoft.AspNetCore.Shared.Tests (2)
src\Shared\Debugger\DictionaryDebugView.cs (1)
28
items[i] = new
DictionaryItemDebugView
<TKey, TValue>(keyValuePairs[i]);
src\Shared\Debugger\StringValuesDictionaryDebugView.cs (1)
28
keyValuePairs.Add(new
DictionaryItemDebugView
<string, string>(kvp.Key, kvp.Value.ToString()));
4 references to DictionaryItemDebugView
Microsoft.AspNetCore.Shared.Tests (4)
src\Shared\Debugger\DictionaryDebugView.cs (2)
19
public
DictionaryItemDebugView
<TKey, TValue>[] Items
25
var items = new
DictionaryItemDebugView
<TKey, TValue>[keyValuePairs.Length];
src\Shared\Debugger\StringValuesDictionaryDebugView.cs (2)
21
public
DictionaryItemDebugView
<string, string>[] Items
25
var keyValuePairs = new List<
DictionaryItemDebugView
<string, string>>();