BitConverter's ToString method can be used to convert a byte array to a string.
ToString
See below for an example:
byte[] byteArray = … string convertedString = BitConverter.ToString(byteArray).Replace("-","");