I have learned that what is the Equatable and how can I use it. But I just wonder that why should I use it?
I have found some reasons. One of them, when we wants to compare 2 or more same object from any class, it will use. they aren't same even if they properties same because of hash code. But equatable compares each other without hash code.
But I really wonder that where I will use in real life scenario?
Many Thanks..