c# byte list to string code example
Example 1: convert system.byte a string c#
string result = System.Text.Encoding.UTF8.GetString(byteArray);
Example 2: c# store byte array as string
public static void Main()
{
byte[] bytes = Convert.FromBase64String("QUJDMTIz");
Console.WriteLine("Byte Array is: " + String.Join(" ", bytes));
string str = Convert.ToBase64String(bytes);
Console.WriteLine("The String is: " + str);
}