how to convert a byte to string c# code example
Example 1: convert system.byte a string c#
string result = System.Text.Encoding.UTF8.GetString(byteArray);
Example 2: convert bytes to string and back c#
string base64 = Convert.ToBase64String(bytes);
byte[] bytes = Convert.FromBase64String(base64);