In the .net framework, every single class you ever write will violate Single Responsibility Principle (SRP). Why? Every object in .net has a method called GetHashCode. And... horrors of horrors, every object has a method called ToString. You can, and
Read More...