How to: Implement Interfaces in VB.NET

Implementing an interface in VB.NET is done by specification Implements. Interfaces can be implemented by classes […] and structures […]. A class or structure can implement one or more interfaces, separated by the operator , in VB.NET. List of interfaces implemented by class/structure is given by their associated names at defining time […]. In below […]

Read More →
How to: Define Interfaces in VB.NET

The interface is a set of definitions of properties, methods and events. Unlike classes […], interfaces do not contain the implementation. Interfaces are implemented […] by classes, but are defined as separate entities. A class that implement an interface must implement all elements defined in that interface. Defining a VB.NET interface is achieved using the […]

Read More →