how to implements interface

  • Thread starter Thread starter sunny
  • Start date Start date
S

sunny

Hi,

How can I use different way to implements a interface that is already
implemented by it's base class?



Thanks ....sunny
 
using VB.NET

example:

Public Class ParticipantRadioButton
Inherits System.Web.UI.HtmlControls.HtmlInputRadioButton
Implements IPostBackDataHandler


I always receive error!!

Thanks Sunny.
 
How can I use different way to implements a interface that is already
implemented by it's base class?

In current versions of VB.NET you can't, unless the interface
implementation methods are Overridable.

In VB.NET 8.0/2005/Whidbey, you'll be able to re-implement an
interface.



Mattias
 
Thanks a lot. you really save my time.

Mattias Sjögren said:
In current versions of VB.NET you can't, unless the interface
implementation methods are Overridable.

In VB.NET 8.0/2005/Whidbey, you'll be able to re-implement an
interface.



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top