I suggest you
The best solution is to convert the byte array to a base 64 string.
You can also use Latin-1 aka ISO-8859-1 aka codepage 28591 for this scenario, as it maps values in the range 0-255 unchanged. The following are interchangeable:
Encoding.GetEncoding(28591)
Encoding.GetEncoding("Latin1")
Encoding.GetEncoding("iso-8859-1")
With this encoding you will always be able to convert byte[] -> string -> byte[] without loss.
See this post for a sample that illustrates the use of this encoding.
