How to convert byte array to string in C#?

If you are looking for a code snippet to convert byte array to string in C#. Below is a sample code that demonstrates how to How to convert byte array to string in C#.

In this sample code, the UTF8 encoding has been used to convert the byte array to string.

How to convert byte array to string in C#?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GinktageConsoleApps
{
    class Program
    {
        static void Main(string[] args)
        {
            string InputString = "This is an example of converting Byte Array to String";
            // Assuming that the input is a byte array by converting it from string
            Byte[] ByteOutput = System.Text.Encoding.UTF8.GetBytes(InputString);

            // Convert Byte Array to String using C#
            string StringOutput = System.Text.Encoding.UTF8.GetString(ByteOutput);

            Console.WriteLine(StringOutput);

            Console.ReadLine();
        }
    }
}

How to convert byte array to string in C#?

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...