mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
18 lines
368 B
C#
18 lines
368 B
C#
using System.Diagnostics;
|
|
|
|
namespace BililiveRecorder.Flv.Amf
|
|
{
|
|
[DebuggerDisplay("{Key}: {Value}")]
|
|
internal sealed class KeyValuePairDebugView<K, V>
|
|
{
|
|
public KeyValuePairDebugView(K key, V value)
|
|
{
|
|
this.Key = key;
|
|
this.Value = value;
|
|
}
|
|
|
|
public K Key { get; }
|
|
public V Value { get; }
|
|
}
|
|
}
|