how to assign a byte array value to a string in c# code example

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

Example 3: c# store byte array as string

string bitString = BitConverter.ToString(bytes);