Interface?

joe_pool_is

Contributor
Joined
Jan 18, 2004
Messages
507
Location
Longview, TX [USA]
I was adding a new form to an existing project in VS2005 the other day, and I took some time to look at all of the different types of objects I could include.

One item in the list was an "Interface". I tried looking in the help under selecting items, but there was no information on what an "Interface" was.

Could someone tell me what an Interface is?
 
A simple way to think about it is that an Interface is like a contract. Any class that implements or extends an Interface is guarenteed to implement all members of the Interface, it may have more, but it will have everything defined in the Interface.
 
Back
Top