[inline...]
On Wed, 29 May 2002 14:21:27 -0400, Shawn Wildermuth
<[EMAIL PROTECTED]> wrote:
>(I searched the archives and haven't noticed this anywhere)
>
>Take the following classes (taken directly from the spec):
>
>class Base
>{
> public static void F() {}
>}
>class Derived: Base
>{
> new p
ks,
Shawn Wildermuth
[EMAIL PROTECTED]
> -Original Message-
> From: dotnet discussion [mailto:[EMAIL PROTECTED]]
> On Behalf Of Todd Clemetson
> Sent: Wednesday, May 29, 2002 3:26 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [DOTNET] Problem with hiding derived methods
>
|
| cc:
|
| Subject: [DOTNET] Probl
(I searched the archives and haven't noticed this anywhere)
Take the following classes (taken directly from the spec):
class Base
{
public static void F() {}
}
class Derived: Base
{
new private static void F() {} // Hides Base.F in Derived only
}
class MoreDerived: Derived
{
static void G