Interfaces

Interfaces in VB.NET – An Example

by Anshoo Arora ON August 9, 2009 · Posted In .NET, All · 8 comments

I’m sure you’re aware of Classes, which on a high-level are user-defined types, and their instances are objects. Vb.NET has introduced a new type, called an Interface. An Interface, according to this article by Nick Harrison, “is a contract that defines the signature of some piece of functionality”. This contract is fulfilled by the Implementing [...]