I'm wondering if there is another way of comparing two byte arrays, that isn't going through each index of the array. I'm just curious.
I tried using:
vb.net Code:
If ArrayA.Equals(ArrayB) Then 'Do something Else 'Do something else End If
But that would give me false negatives. If I wanted the real results then I would have to add a Not.
Thanks in advance!




.
Reply With Quote