<PackageReference Include="System.Text.Json" Version="9.0.8" />

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(TKey key, TValue value) { Key = key; Value = value; } public DebugViewDictionaryItem(KeyValuePair<TKey, TValue> keyValue) { Key = keyValue.Key; Value = keyValue.Value; } } }