Re: [DOTNET] Problem with hiding derived methods

2002-05-30 Thread Jon Jagger
[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

Re: [DOTNET] Problem with hiding derived methods

2002-05-29 Thread Shawn Wildermuth
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 >

Re: [DOTNET] Problem with hiding derived methods

2002-05-29 Thread Todd Clemetson
| | cc: | | Subject: [DOTNET] Probl

[DOTNET] Problem with hiding derived methods

2002-05-29 Thread Shawn Wildermuth
(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