changing access modifier of base method
- From: jonpb <nospam@xxxxxxxxxx>
- Date: Tue, 22 Jan 2008 14:11:47 -0800
Hi,
I have implemented an InputBox dialogue, I would like to change the access modifier of the Form::Show method from public to private, but the following code does not do that. What else do I need to do? Thanks.
public partial class InputBox : Form
{
private new void Show()
{
}
private new void Show(IWin32Window owner)
{
}
}
.
- Follow-Ups:
- Re: changing access modifier of base method
- From: Fredo
- Re: changing access modifier of base method
- From: Nicholas Paldino [.NET/C# MVP]
- Re: changing access modifier of base method
- From: Jon Skeet [C# MVP]
- Re: changing access modifier of base method
- Prev by Date: C# Generics
- Next by Date: Maximized app window on top of auto-hide task bar
- Previous by thread: C# Generics
- Next by thread: Re: changing access modifier of base method
- Index(es):
Relevant Pages
|