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 →