c# byte array to string code example
Example 1: c# string to byte array
string author = "Mahesh Chand";
byte[] bytes = Encoding.ASCII.GetBytes(author);
string str = Encoding.ASCII.GetString(bytes);
Example 2: convert system.byte a string c#
string result = System.Text.Encoding.UTF8.GetString(byteArray);
Example 3: c# store byte array as string
public static void Main()
{
byte[] bytes = Encoding.Default.GetBytes("ABC123");
Console.WriteLine("Byte Array is: " + String.Join(" ", bytes));
string str = Encoding.Default.GetString(bytes);
Console.WriteLine("The String is: " + str);
}
Example 4: c# string to byte array
string someText = "some data as text.";
byte[] bytes = Encoding.ASCII.GetBytes(author);
string str = Encoding.ASCII.GetString(bytes);
Console.WriteLine(str);
Example 5: c# string to byte[]
using System.Text;
public static byte[] encode(string stringToEncode)
{
UTF8Encoding utf8 = new UtF8Encoding();
byte[] bytename = new byte[1024];
bytename = utf8.GetBytes(stringToEncode);
return bytename;
}
Example 6: c# byte array to string
var str = System.Text.Encoding.Default.GetString(result);