HomeCSharpHow to convert byte array to string in C#?

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

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...