Are you looking to compare two array of bytes in C#? Below is a sample code snippet that demonstrates how to do it.
How to compare two Byte Arrays in C#?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbundantcodeConsole
{
class Program
{
static void Main(string[] args)
{
// How to Compare two Byte Arrays in C# ?
byte[] Input1 = new byte[] { 2, 87, 100 };
byte[] Input2 = new byte[] { 2, 33, 55 };
byte[] Input3 = new byte[] { 2, 33, 55 };
bool Combination1 = Input1.SequenceEqual(Input2);
bool Combination2 = Input3.SequenceEqual(Input2);
Console.WriteLine("Byte Array Equality Combination 1 " + Combination1);
Console.WriteLine("Byte Array Equality Combination 2 " + Combination2);
Console.ReadLine();
}
}
}
Leave a Reply