M
Mike
According to the MSDN (see reference below), it is possible to change
a base class function from public to private. How is this done? I've
tried using "new", but the function is still accessible.
From MSDN:
"A derived type can hide an inherited member by defining a new member
with the same signature. This might be done to make a previously
public member private or to define new behavior for an inherited
method that is marked as final."
http://msdn2.microsoft.com/en-us/library/exe76ct6(VS.71).aspx
a base class function from public to private. How is this done? I've
tried using "new", but the function is still accessible.
From MSDN:
"A derived type can hide an inherited member by defining a new member
with the same signature. This might be done to make a previously
public member private or to define new behavior for an inherited
method that is marked as final."
http://msdn2.microsoft.com/en-us/library/exe76ct6(VS.71).aspx