|
by Eric Lippert via Fabulous Adventures In Coding on 6/14/2010 3:40:00 PM
Another interesting question from StackOverflow. That thing is a gold mine for blog topics. Consider the following:
class B{ public int X() { return 123; }}class D : B{ new protected int X() { return 456; }}... [ read more ]
|