Answers for "c# any way to convert byte to string"

C#
8

convert system.byte a string c#

string result = System.Text.Encoding.UTF8.GetString(byteArray);
Posted by: Guest on July-03-2020
1

convert bytes to string and back c#

string base64 = Convert.ToBase64String(bytes);
byte[] bytes = Convert.FromBase64String(base64);
Posted by: Guest on October-08-2020

Code answers related to "c# any way to convert byte to string"

C# Answers by Framework

Browse Popular Code Answers by Language