using System.Collections.Generic;
private string VIN = "123456787ABCDEFGH";
byte[] responseData = new byte[0];
byte[] zero = new byte[1];
responseData.Concat(Encoding.ASCII.GetBytes(this.VIN.Substring(0,5)));
Console.WriteLine(responseData.ToString());