Is method hiding ever a good idea
- by ScottS
In C# the new keyword can be used to hide a base class method without overriding the base class method.
I've never encountered a situation where hiding a method was the best choice available. Are there any situations where method hiding is the best choice?