I am making C# windows application.In that application i have one byte array containing hex values.suppose i have byte array as
array[0]=4E
array[1]=50
Here i want to combination of these values as 4E50 to compare.I dont want to compare single byte.Please help me.Thanks in advance.
I’m not sure if I understand correctly do you want to compare 0x4E50 with another number? If so you can do as follows:
This will give you 0x4E50.