What are some practical uses of the "new" modifier in C# with respect to hiding?
- by Joel Etherton
A co-worker and I were looking at the behavior of the new keyword in C# as it applies to the concept of hiding. From the documentation:
Use the new modifier to explicitly hide a member inherited from a base
class. To hide an inherited member, declare it in the derived class
using the same name, and modify it with the new modifier.
We've…