byte array to string c# code example

Example 1: c# string to byte array

string author = "Mahesh Chand";  
// Convert a C# string to a byte array  
byte[] bytes = Encoding.ASCII.GetBytes(author);  

// Convert a byte array to a C# string. 
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: string from byte array c#

var str = System.Text.Encoding.Default.GetString(result);

Example 5: c# string to byte array

// Convert a string to a C# byte[]
//change encoding depending on your data
string someText = "some data as text.";
byte[] bytes = Encoding.ASCII.GetBytes(author);

// Convert a byte array to a C# string    
string str = Encoding.ASCII.GetString(bytes);  
Console.WriteLine(str);

Example 6: 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;
}