<PackageReference Include="System.Text.Json" Version="10.0.0-preview.4.25258.110" />

DebugViewDictionaryItem<TKey, TValue>

struct DebugViewDictionaryItem<TKey, TValue>
using System.Diagnostics; namespace System.Collections.Generic { [DebuggerDisplay("{Value}", Name = "[{Key}]")] internal readonly struct DebugViewDictionaryItem<TKey, TValue> { [DebuggerBrowsable(DebuggerBrowsableState.Collapsed)] public TKey Key { get; } [DebuggerBrowsable(DebuggerBrowsableState.Collapsed)] public TValue Value { get; } public DebugViewDictionaryItem(KeyValuePair<TKey, TValue> keyValue) { Key = keyValue.Key; Value = keyValue.Value; } } }