Use BitConverter Class to Convert a Byte Array June 27, 2019 2:06 pm BitConverter’s ToString?method can be used to convert a byte array to a string. See below for an example: byte[] byteArray = ?string convertedString = BitConverter.ToString(byteArray).Replace(“-“,””);