novotnyllc / MiFare

MiFare Classic support for UWP and Windows Desktop apps
MIT License
37 stars 29 forks source link

DataBlock isChanged is not correct #3

Closed qyen closed 5 years ago

qyen commented 6 years ago

MiFare.Classic.DataBlock

public bool IsChanged => (!data.Equals(origData));

is maybe

public bool IsChanged => (!data.SequenceEqual(origData));

clairernovotny commented 5 years ago

To set expectations, I am not actively working on this project but will accept PR's and get new versions out if there are fixes.

clairernovotny commented 5 years ago

Fixed by #5