I'm just learning C# and have come to visual inheritance. I was able to create a form with a button
that was inherited by a second form. I made the button public so that I can override the click
event. My code does run but so too does the base class event code.
How can I make my event code override the code in the base class?
Thanks.