using System.Collections.Generic; namespace HC_APTBS.Infrastructure.Kwp.Packets { public class ReadRomEepromResponse : Packet { public ReadRomEepromResponse(List bytes) : base(bytes) { //Dump(); } private void Dump() { System.Diagnostics.Debug.Write("Received \"Read ROM/EEPROM Response\" packet:"); foreach (var b in Body) { System.Diagnostics.Debug.Write($" {b:X2}"); } System.Diagnostics.Debug.WriteLine(""); } } }