Is there way for a class to \'remove\' methods that it has inherited?
E.g. if I don\'t want my class to have a ToString() method can I do something so t
ToString()
Short awnser, NO as all classes inherit from object and object has this method.