Answers for "how to convert byte array into string array in c#"

C#
2

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);
    }
Posted by: Guest on January-12-2021

Code answers related to "how to convert byte array into string array in c#"

C# Answers by Framework

Browse Popular Code Answers by Language