We've expanded our news coverage and improved our search! Visit
news.oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Understanding Interfaces in .NET
|
| Subject: |
|
New Fangled Interfaces |
| Date: |
|
2005-01-27 09:30:56 |
| From: |
|
Larutan
|
Response to: New Fangled Interfaces
|
|
VB had interfaces before VB.NET. It didn't have the same look as it does in .NET when creating an Interface.
(.NET lets you know its an interface)
Interface
.
.
.
End Interface
In old VB you just created a new class module (with only methods and properties). In fact that's why you were supposed to put an 'I' at the beginning of your interface name (COM standards). Otherwise it just looked like a regular class.
|